/** 设置行 — 左标签(可带说明)+ 右控件,1px 分隔线;设置窗口/移动端「我的」的基本骨架。 */ export interface SettingRowProps { label: string; /** 12px 灰色辅助说明 */ description?: string; /** 右侧控件:Switch / HotkeyCombo / Button / 文本 */ children?: any; } export declare function SettingRow(props: SettingRowProps): any;