/** * Search component with auto and manual search modes * * @param props - The search component props * @param ref - Forward ref to the input element * @returns Search component */ declare const Search: import("react").ForwardRefExoticComponent, "value" | "type"> & import("../FormField/FormField.types").ControlledFormComponentProps & { style?: import("./Search.types").SearchStyleEnum; onSearch?: import("./Search.types").SearchCallback; onClear?: () => void; debounceMs?: number; minCharacters?: number; showSubmitButton?: boolean; showClearButton?: boolean; loading?: boolean; 'component-variant'?: string; } & import("react").RefAttributes>; export default Search;