import { QuestionnaireState } from '../../types'; export declare const expectRowError: (prompt: string) => void; export declare const expectRowErrorText: (prompt: string, text: string) => void; export declare const expectCheckboxErrorText: (prompt: string, text: string) => void; export declare const expectNoRowError: (prompt: string) => void; export declare const expectQuestionCount: (count: number) => void; export declare const expectText: (text: string, length?: number, exact?: boolean) => void; export declare const expectSummaryFieldText: (field: string, text: string) => void; export declare const expectNullInput: (ariaLabel: string) => void; export declare const expectVisibleQuestion: (prompt: string) => void; export declare const expectNoQuestion: (prompt: string) => void; export declare const expectSubLabel: (text: string) => void; export declare const expectNoSubLabel: (text: string) => void; export declare const expectCheckbox: (prompt: string) => void; export declare const expectWarningMessage: (prompt: string) => void; export declare const expectNoWarningMessage: (prompt: string) => void; export declare const expectSection: (title: string) => void; export declare const expectNoSection: (title: string) => void; export declare const expectDisabledInput: (ariaLabel: string) => void; export declare const expectInputValue: (ariaLabel: string, value: string) => void; export declare const expectChecked: (label: string) => void; export declare const expectUnchecked: (ariaLabel: string) => void; export declare const clickLabel: (ariaLabel: string) => void; export declare const clickShow: (text: string) => void; export declare const changeInput: (ariaLabel: string, value: string) => void; export declare const clickInput: (ariaLabel: string) => void; export declare const clickEdit: (ariaLabel: string, fields?: QuestionnaireState) => void; export declare const expectNoEditButton: (ariaLabel: string) => void; export declare const clickBack: () => void; export declare const clickNext: () => void; export declare const clickSubmit: () => Promise; export declare const clickAddAdditionalResidence: () => void; export declare const clickRemoveResidence: (index: 1 | 2 | 3 | 4 | 5) => void; export declare const clickAddControllingPerson: () => void; export declare const clickRemoveControllingPerson: (index: 1 | 2 | 3 | 4 | 5) => void; export declare const setBusinessNameAndAddress: (prefix?: string) => void; export declare const setAddress: (prefix: string, location: "US" | "AT") => void; export declare const setIndividualNameAndAddress: (prefix?: string) => void; export declare const setUSIndividualNameAndAddress: (prefix?: string) => void; export declare const setIndividualNameAndAddressAndBirthDate: (prefix?: string) => void; export declare const setUSIndividualNameAndAddressAndBirthDate: (prefix?: string) => void; export declare const setIndividualCountryNameAndAddressAndBirthDate: (prefix?: string) => void; export declare const setBirthDateAndCitizenship: (prefix?: string) => void; export declare const setBirthDate: (prefix?: string) => void; export declare const log: (message: string) => void; export declare const setControllingPersonDetails: (prefix: string) => void; export declare const expectNoErrors: () => void;