/// export interface IListBoxInterface { id: string; size?: "small" | "medium"; options: any[]; width?: string | number; getOptionLabel: (option: any) => string; getOptionProps: (option: any) => Record; getOptionValue: (option: any) => string | number; isOptionSelected: (option: any) => boolean; isOptionDisabled: (option: any) => boolean; getBadgeLabel?: (option: any) => string; onSelectAll?: () => any; getBadgeOptions?: (option: any) => Record; showSearch?: boolean; showSelectAll?: boolean; multiple?: boolean; allOptionsSelected?: boolean; selectedOptions?: any[]; hideTickIcon?: boolean; } declare const Listbox: import("react").ForwardRefExoticComponent>; export default Listbox;