/** * Configuration file loader */ import { type ArtemisConfig } from './schema'; /** * Find and load the configuration file */ export declare function loadConfig(configPath?: string): Promise<(ArtemisConfig & { _path: string; }) | null>; /** * Get a merged config with CLI options taking precedence */ export declare function mergeConfig(fileConfig: ArtemisConfig | null, cliOptions: Partial): ArtemisConfig; //# sourceMappingURL=loader.d.ts.map