/// import { Props } from 'react-select/src/Select'; import { ActionMeta } from 'react-select/src/types'; declare type SelectOption = { label: string; value: any; }; declare type BaseProps = Omit, 'onChange' | 'isMulti'> & { minWidth?: number; }; export declare type SelectProps = (BaseProps & { isMulti?: false; onChange?: (value: SelectOption | null, action: ActionMeta) => any; }) | (BaseProps & { isMulti: true; onChange?: (value: SelectOption[] | null, action: ActionMeta) => any; }); export declare function Select({ minWidth, ...props }: SelectProps): JSX.Element; export {}; //# sourceMappingURL=Select.d.ts.map