import React, { FC } from 'react'; import { HTMLTribeProps } from '../types/index.js'; export declare type SearchableSelectItemsProps = HTMLTribeProps<'ul'> & { static?: boolean; }; export declare const SearchableSelectItems: React.ForwardRefExoticComponent & { static?: boolean; } & React.RefAttributes>; export declare type SearchableSelectItemProps = Omit, 'value'> & { value: T; index?: number; disabled?: boolean; }; export declare const SearchableSelectItem: FC>; export declare type SearchableSelectItemsEmptyProps = HTMLTribeProps<'div'>; export declare const SearchableSelectItemsEmpty: FC;