/// import { InputProps } from "../Input.interface"; export declare const mockIcon: import("react/jsx-runtime").JSX.Element; export declare const mockDropdownClick: jest.Mock; export declare const mockIconClick: jest.Mock; export declare class InputObject { get input(): HTMLInputElement; get supportingText(): HTMLElement; get label(): HTMLElement; get icon(): HTMLElement; button(name?: string): HTMLElement; text(content: string): HTMLElement; typeInInput(content: string): Promise; clickButton(name?: string): void; render(props?: Partial): this; }