import type { Dispatch, SetStateAction } from 'react'; import type { IconProps } from '..'; import type { SelectProps } from '.'; export type SelectFilteredProps = SelectProps & { filter?: string; setFilter?: Dispatch>; addonIcon?: IconProps['name']; }; declare const SelectFiltered: import("react").ForwardRefExoticComponent & { anchor?: import("react").ElementType; error?: string; options: import("./SelectLegacy").SelectOption[]; onChange: (value: import("./SelectLegacy").SelectOption[0]) => void; getLabel?: (params: import("./SelectLegacy").SelectOption) => import("./SelectLegacy").SelectOption[1]; getValue?: (params: import("./SelectLegacy").SelectOption) => import("./SelectLegacy").SelectOption[0]; filter?: string; renderOptions?: import("react").ElementType; renderItem?: import("react").ElementType; renderSelected?: import("react").ElementType; customEmpty?: string; addonIcon?: IconProps["name"]; } & { filter?: string; setFilter?: Dispatch>; addonIcon?: IconProps["name"]; } & import("react").RefAttributes>; export default SelectFiltered; //# sourceMappingURL=SelectFiltered.d.ts.map