import React from 'react'; import { Props, ActionMeta } from 'react-select'; import { FilterOptionOption as Option } from 'react-select/dist/declarations/src/filters'; import { ErrorType } from '../../../utils/common'; import { SelectOptionType } from '../../../utils/types'; declare const Control: (props: any) => JSX.Element; declare const DropdownIndicator: (props: any) => JSX.Element; declare const LoadingIndicator: () => JSX.Element; declare const Input: (props: any) => JSX.Element; export declare type SelectProps = Omit & { onChange?: (option: Option, info: ActionMeta) => void; label?: string; invalid?: boolean; disabled?: boolean; error?: ErrorType; empty?: boolean; loading?: boolean; }; declare const Select: React.ForwardRefExoticComponent>, "onChange" | "isDisabled"> & { onChange?: ((option: Option, info: ActionMeta) => void) | undefined; label?: string | undefined; invalid?: boolean | undefined; disabled?: boolean | undefined; error?: ErrorType | undefined; empty?: boolean | undefined; loading?: boolean | undefined; } & React.RefAttributes>>; export { Select, Control, DropdownIndicator, LoadingIndicator, Input }; //# sourceMappingURL=Select.d.ts.map