import { ForwardRefExoticComponent, RefAttributes, ComponentProps } from 'react'; type SearchProps = Omit, 'type' | 'className'> & { className?: string; inputClassName?: string; clearLabel?: string; onClear?: () => void; 'data-slot'?: never; }; declare const Search: ForwardRefExoticComponent & RefAttributes>; export { Search };