import React from 'react'; import { RenderResult } from '@testing-library/react'; import { type SearchInputProps } from '..'; export declare function getSearchInputJSX(props?: Partial): React.JSX.Element; type RenderSearchInputReturn = RenderResult & { rerenderWithProps: (newProps?: Partial | undefined) => void; containerEl: HTMLElement; searchBoxEl: HTMLElement; inputEl: HTMLInputElement; openMenu: Function; getMenuElements: Function; }; export declare function renderSearchInput(props?: Partial): RenderSearchInputReturn; export {}; //# sourceMappingURL=SearchInput.testutils.d.ts.map