export declare type Config = { env?: "prod" | "test"; openaiAPIHost: string; model: string; openaiKey: string; debuggable?: boolean; }; export declare abstract class CLIService { abstract commandActionHandler(opts: any, args?: any): Promise; }