import { HTMLAttributes, ReactNode, default as React } from 'react';
export interface SearchDropdownProps extends HTMLAttributes {
/**
* ID to find this component in testing tools (e.g.: cypress,
* testing-library, and jest).
*/
testId?: string;
children?: ReactNode;
loadingLabel?: string;
}
declare const SearchDropdown: React.ForwardRefExoticComponent>;
export default SearchDropdown;
//# sourceMappingURL=SearchDropdown.d.ts.map