import type { ResolverError } from './resolve'; declare const CONFIG_FILENAMES: string[]; export { CONFIG_FILENAMES }; export interface DokkimiConfig { dokkimi?: string; env: Record; } /** * Loads the project config file from the .dokkimi/ root directory. * Looks for config.yaml, config.yml, or config.json (first match wins). * Returns defaults if no config file exists. */ export declare function loadDokkimiConfig(dokkimiDir: string, errors: ResolverError[]): DokkimiConfig;