/** 文本输入框 — 桌面 36px / 移动 44px。 */ export interface InputProps { /** md=36px 桌面 / lg=44px 移动 @default 'md' */ size?: 'md' | 'lg'; placeholder?: string; value?: string; disabled?: boolean; onChange?: (e: any) => void; style?: any; } export declare function Input(props: InputProps): any;