export declare type CommandDefinition = { command: string; action: (...args: any) => Promise; options?: { flags: string; description?: string; defaultValue?: any; }[]; help: string; };