import { InputCodeProps } from "../InputCode.interface"; export declare const mockErrorMessage = "Error"; export declare const InputCodeTestComponent: (props: Omit) => import("react/jsx-runtime").JSX.Element; export declare class InputCodeObject { get inputs(): HTMLInputElement[]; get supportingText(): HTMLElement; get label(): HTMLElement; get error(): HTMLElement; get dash(): HTMLElement; typeInInput(inputIdx: number, content: string): Promise; typeInAllInputs(): Promise; assertInputValueAfterTyping(expectedResults: string[]): void; render(props?: Omit): this; }