import { FC } from 'react'; import { CommonControlProps } from '../../types'; import { SelectOption } from '../ScrollSelector'; export interface SelectProps extends CommonControlProps { options: SelectOption[]; multiple?: boolean; value?: string | string[]; onChange?: (values: string | string[]) => void; placeholder?: string; open?: boolean; onOpenChange?: (open: boolean) => void; } declare const Select: FC; export default Select;