import type { UniDriver } from '@wix/wix-ui-test-utils/unidriver'; import { LegendAlignment, LegendPlacement, LegendSize, FieldSetStatusType, Alignment, Direction, Gap } from './FieldSet.types'; export declare const fieldSetDriverFactory: (base: UniDriver, body: UniDriver) => { /** get legend text */ getLegendText: () => Promise; /** returns legend size */ getLegendSize: () => Promise; /** returns legend placement */ getLegendPlacement: () => Promise; /** returns legend alignment */ getLegendAlignment: () => Promise; /** returns true whether field set is required */ isRequired: () => Promise; /** returns the length left */ getCharCount: () => Promise; /** returns whether the field set length is exceeded */ isLengthExceeded: () => Promise; /** returns tooltip text of the info content */ getInfoContent: () => Promise; getAlignment: () => Promise; getDirection: () => Promise; getGap: () => Promise; /** returns status message text */ getStatusMessage: () => Promise; /** return true if it has a given status */ hasStatus: (status: FieldSetStatusType) => Promise; exists: () => Promise; element: () => Promise; click: () => Promise; }; export type FieldSetUniDriver = ReturnType; //# sourceMappingURL=FieldSet.uni.driver.d.ts.map