/** * Styled native select with Lucide chevron. */ export interface SelectOption { value: string; label: string; } export interface SelectProps { label?: string; options: SelectOption[]; value?: string; onChange?: (e: React.ChangeEvent) => void; disabled?: boolean; style?: React.CSSProperties; } export declare function Select(props: SelectProps): JSX.Element;