import { Config } from '../config/config'; /** * Load configuration from a JSON file * @param filePath - Path to the configuration file * @returns Configuration object */ export declare function loadConfigFromFile(filePath: string): Partial; /** * Save configuration to a JSON file * @param filePath - Path to save the configuration file * @param config - Configuration object to save */ export declare function saveConfigToFile(filePath: string, config: any): void;