import { default as React } from 'react'; import { SingleValueProps } from 'react-select'; import { Option } from './option'; import { BaseSelectProps, SelectFieldProps, SelectOption, SelectOptionType, TooltipProps } from './selectField.types'; export { Option }; export declare const SingleValue: (props: SingleValueProps & { getOptionLabel?: (option: SelectOption) => string; }) => import("react/jsx-runtime").JSX.Element; export declare const SearchComponent: () => import("react/jsx-runtime").JSX.Element; export declare const ClearComponent: ({ optionSelected, isClearable, handleChange, }: { optionSelected?: SelectOptionType | undefined; isClearable: boolean; handleChange: (selected: SelectOptionType) => void; }) => import("react/jsx-runtime").JSX.Element | null; export declare const SelectField: React.FC; export default SelectField; export type { BaseSelectProps, SelectOption, SelectOptionType, SelectFieldProps, TooltipProps };