import { Argument } from './Argument'; export declare abstract class Intent { abstract execute(args: Argument): Promise; }