import { Command } from "../Command"; import { Resource } from "../dependencies/Resource"; declare type TestCommandArgs = { onExecute?: () => Promise; onRevert?: () => Promise; duration?: number; dependencies?: Resource[]; }; export declare class TestCommand extends Command { protected data: TestCommandArgs; protected dependencies: Resource[]; metadata: { name: string; }; constructor(data?: TestCommandArgs); onExecute(): Promise; onRevert(): Promise; } export {}; //# sourceMappingURL=TestCommand.helper.d.ts.map