/** * 下拉选择(自绘弹层,非原生 select):触发器与 Input 同形制,弹出磷光风格选项菜单——当前项绿色 ▍ 标记 + 抬升底。选项文案用「值 · 中文」格式(如 "manual · 手动")。 */ export interface SelectProps { label?: string; required?: boolean; options?: Array; value?: string; defaultValue?: string; onChange?: (value: string) => void; style?: React.CSSProperties; } export declare function Select(props: SelectProps): JSX.Element;