import { ComponentWrapper, ElementWrapper } from '@awsui/test-utils-core/dom';
export default class FormWrapper extends ComponentWrapper {
    static rootSelector: string;
    findHeader(): ElementWrapper | null;
    findContent(): ElementWrapper | null;
    findError(): ElementWrapper | null;
    findActions(): ElementWrapper | null;
}
