import { JSX } from 'react'; import { ClearIndicatorProps, ControlProps, DropdownIndicatorProps, GroupBase, GroupHeadingProps, InputProps, MenuListProps, MultiValueGenericProps, SingleValueProps, ValueContainerProps } from 'react-select'; import { InputSelectValue } from '.'; declare function DropdownIndicator(props: DropdownIndicatorProps): JSX.Element; declare function ClearIndicator(props: ClearIndicatorProps): JSX.Element; declare function MultiValueContainer(props: MultiValueGenericProps>>): JSX.Element; declare function MultiValueLabel(props: MultiValueGenericProps>>): any; declare function MultiValueRemove(props: any): JSX.Element; declare function GroupHeading(props: GroupHeadingProps): JSX.Element | null; declare function MenuList(props: MenuListProps): JSX.Element; declare function MenuPortal(props: any): JSX.Element; declare function Input(props: InputProps): JSX.Element; declare function Control(props: ControlProps): JSX.Element; declare function ValueContainer(props: ValueContainerProps): JSX.Element; declare function SingleValue(props: SingleValueProps): JSX.Element; declare const selectComponentOverrides: { DropdownIndicator: typeof DropdownIndicator; IndicatorSeparator: () => null; ClearIndicator: typeof ClearIndicator; MultiValueContainer: typeof MultiValueContainer; MultiValueLabel: typeof MultiValueLabel; MultiValueRemove: typeof MultiValueRemove; GroupHeading: typeof GroupHeading; MenuList: typeof MenuList; MenuPortal: typeof MenuPortal; Input: typeof Input; Control: typeof Control; ValueContainer: typeof ValueContainer; SingleValue: typeof SingleValue; }; export default selectComponentOverrides;