export interface EnsureConfigOptions { nonInteractive?: boolean; } export interface EnsureConfigResult { configPath: string; changed: boolean; config: Record; } export declare function ensureCodexConfig(options?: EnsureConfigOptions): Promise; export declare function getCodexConfigPath(): string;