import { SelectContextProps, SelectProps, SelectMultipleValue, SelectListOnChange } from './types'; export declare const SelectContext: import('react').Context; export declare const Select: import('react').ForwardRefExoticComponent<{ options: import('./types').SelectOption[]; dropdownProps?: Partial; onLoadMore?: import('./types').LoadMore | undefined; } & import('../common').QA & { value: SelectMultipleValue; onChange: SelectListOnChange; multiple?: boolean; showChips?: number; maxChipLength?: number; maxChipLengthFunc?: (label: string) => string; wrap?: boolean; filter?: import('./types').SelectFilter | undefined; virtualize?: Pick | boolean; } & Pick & Pick & import('./types').SelectListProps & Omit & Partial> & import('react').RefAttributes>; export declare const SingleSelect: import('react').ForwardRefExoticComponent<{ value: import('./types').SelectSingleValue | undefined; onChange: import('./types').SelectSingleOnChange; } & Omit, unknown>, "onChange" | "multiple" | "value"> & import('react').RefAttributes>;