import { Action } from './Action'; export declare class SimpleAction extends Action { get identifier(): string; private readonly promise; constructor(promise: () => Promise); protected perform(): Promise; }