import { InputAutocompleteProps } from "../InputAutocomplete.interface"; export declare const mockErrorMessage = "Error"; interface InputAutoCompleteTestComponentProps extends Omit { value?: string; } export declare class InputAutocompleteObject { get input(): HTMLInputElement; typeInInput(content: string): Promise; focusInput(): Promise; get inputPrefix(): HTMLInputElement; get supportingText(): HTMLElement; get label(): HTMLElement; get error(): HTMLElement; get inputSearchIcon(): HTMLElement; get inputClearIcon(): HTMLElement | null; clickInputClearIcon(): Promise; get dropdownIcons(): HTMLElement[]; get dropdown(): HTMLElement; getDropdownItem(labelText: string): HTMLElement; get addNew(): HTMLElement; areOnlyMatchingItemsDisplayed(inputValue: string): void; render(props?: Omit): this; } export {};