import { Action } from './Action'; export declare class RepeatableAction extends Action { private readonly actionFactory; private innerAction?; constructor(context: Context, actionFactory: () => Action); protected perform(): Promise; cancel(): void; }