import { default as React, HTMLAttributes } from 'react';
export interface SearchAutoCompleteProps extends HTMLAttributes {
/**
* ID to find this component in testing tools (e.g.: cypress, testing library, and jest).
*/
testId?: string;
}
declare const SearchAutoComplete: ({ testId, children, ...otherProps }: SearchAutoCompleteProps) => React.JSX.Element | null;
export default SearchAutoComplete;
//# sourceMappingURL=SearchAutoComplete.d.ts.map