import { Step } from './Step'; declare const sequence: (steps: Step[]) => Step; declare const repeat: (amount: number, step: Step) => Step[]; declare const sequenceRepeat: (amount: number, step: Step) => Step; declare const repeatUntil: (label: string, repeatStep: Step, successStep: Step, numAttempts: number) => Step; declare const waitForPredicate: (label: string, interval: number, amount: number, predicate: () => boolean) => Step; export { sequence, repeatUntil, waitForPredicate, repeat, sequenceRepeat }; //# sourceMappingURL=GeneralSteps.d.ts.map