export type Config = KeepConfig & { readonly rgPath: string; }; export type KeepConfig = { readonly codexPath: string; readonly model: string; readonly reasoningEffort: string; readonly promptMaxBytes: number; readonly totalPromptMaxBytes: number; readonly promptLineMaxBytes: number; readonly outputLineMaxBytes: number; readonly codexConcurrency: number; readonly timeoutMs: number; readonly debug: boolean; }; export declare function loadRgPath(env: NodeJS.ProcessEnv): string; export declare function loadKeepConfig(env: NodeJS.ProcessEnv): KeepConfig; export declare function loadConfig(env: NodeJS.ProcessEnv): Config; //# sourceMappingURL=config.d.ts.map