import { default as React, HTMLAttributes } from 'react'; import { SearchProviderContextValue } from '../../molecules/SearchProvider'; export type SearchInputProps = { /** * ID to find this component in testing tools (e.g.: cypress, * testing-library, and jest). */ testId?: string; /** * The current status of the Search Dropdown. */ visibleDropdown: boolean; /** * Search result searchId. */ searchId?: string; } & HTMLAttributes & SearchProviderContextValue; declare const SearchInput: React.ForwardRefExoticComponent<{ /** * ID to find this component in testing tools (e.g.: cypress, * testing-library, and jest). */ testId?: string; /** * The current status of the Search Dropdown. */ visibleDropdown: boolean; /** * Search result searchId. */ searchId?: string; } & React.HTMLAttributes & SearchProviderContextValue & React.RefAttributes>; export default SearchInput; //# sourceMappingURL=SearchInput.d.ts.map