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