import { ComboBoxProps, Key } from 'react-aria-components'; import { ComponentSize } from '../../atoms/types'; export type SearchItem = { id: Key; name: string; }; export type VariantInputSearch = 'default' | 'search-outline' | 'search' | null; export type SearchInputProps = Omit, 'items'> & ComponentSize & { label?: string; variant?: VariantInputSearch; isDisabled?: boolean; onSearch?: (value: string) => void; searchDebounceTime?: number; items?: SearchItem[]; onSelectionChange?: (id: Key) => void; }; //# sourceMappingURL=types.d.ts.map