/** * Config file loading */ import { FullConfig } from './schema'; export interface LoadConfigOptions { configPath?: string; cwd?: string; } /** * Load config from file */ export declare function loadConfigFile(filePath: string): FullConfig; /** * Load config with resolution order: * 1. Explicit config path * 2. Project config (current dir and parents) * 3. User config (~/.praisonai.yaml) * 4. Defaults */ export declare function loadConfig(options?: LoadConfigOptions): FullConfig;