/** * 文本/数字输入框:深底直角,focus 绿 dim 边框 + 1px ring。可带顶部小标签与红色必填星。 */ export interface InputProps { /** 顶部 11px 字距标签 */ label?: string; /** 标签后追加红色 * */ required?: boolean; type?: 'text' | 'number'; placeholder?: string; value?: string; defaultValue?: string; onChange?: (value: string) => void; width?: number | string; style?: React.CSSProperties; } export declare function Input(props: InputProps): JSX.Element;