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