import type { Config } from "./schema";
/**
 * Merges the user's configuration file with the default configuration.
 * If the file does not exist, the default configuration is used.
 * @param config The user's configuration
 * @returns {NonNullable<Required<Config>>} The complete configuration with defaults applied.
 */
export declare function mergeDefaultConfig(config: Partial<Config>): NonNullable<Required<Config>>;
