import { SearchProps } from "../Search.interface"; export declare const mockErrorMessage = "Error"; export declare class SearchObject { get input(): HTMLElement; get inputPrefix(): HTMLElement; get icon(): HTMLElement; text(content: string): HTMLElement; typeInInput(content: string): Promise; button(name?: string): HTMLElement; render(props?: Partial): this; }