export type SelectOption = { title: string; key: string; isSelected?: boolean; isDisabled?: boolean; }; export type SelectSection = { key: string; title?: string; items: SelectOption[]; }; type SelectProps = { options?: SelectOption[]; sections?: SelectSection[]; placeholder?: string; onSelect?: (item: SelectOption) => void; selectedComponent?: any; dropdownMaxHeight?: number; disabled?: boolean; }; export declare const Select: ({ options, sections, placeholder, onSelect, dropdownMaxHeight, disabled, }: SelectProps) => JSX.Element; export default Select;