import { Result } from '../Result/Result';
import { IAsyncCommand } from './IAsyncCommand';
export declare class AsyncCommand implements IAsyncCommand {
AsyncCommand: () => Promise<void>;
constructor(AsyncCommand: () => Promise<void>);
Execute(): Promise<Result<null>>;
}