import React, { ReactNode } from 'react'; export declare type SearchableSelectProps = { value: Item; options: Item[]; onChange: (newValue: Item) => void; className?: string; children: ReactNode; disabled?: boolean; invalid?: boolean; onInputChange?: (newValue: string) => void; }; export declare const SearchableSelect: { (props: SearchableSelectProps): JSX.Element; Button: React.ForwardRefExoticComponent | "dense" | "hideIcon"> & React.RefAttributes>; Items: React.ForwardRefExoticComponent & { static?: boolean; } & React.RefAttributes>; ItemsEmpty: React.FC; Item: React.FC>; };