/** * Configuration file loader * Loads and validates .lost-keys.yml configuration */ import { LostKeysConfig } from './types'; /** * Load configuration result */ export interface LoadConfigResult { config: LostKeysConfig; error?: string; } /** * Load Lost Keys configuration from .lost-keys.yml * @param configPath - Optional path to config file (defaults to .lost-keys.yml in cwd) * @returns Configuration object (returns defaults if file not found) */ export declare function loadConfig(configPath?: string): LoadConfigResult; /** * Get the default configuration file path * @returns Path to .lost-keys.yml in current working directory */ export declare function getConfigPath(): string; //# sourceMappingURL=loader.d.ts.map