import type { IntroCliConfig } from '../types/config-types'; /** * loadUserConfig - Loads the user's custom configuration file. * @returns {Partial} - The user's configuration if found, or an empty object. */ export declare const loadUserConfig: () => Partial; /** * validateUserConfig - Validates the user's configuration to ensure it follows the structure. * @param {Partial} userConfig - The user's configuration. * @returns {boolean} - True if the configuration is valid, false otherwise */ export declare const validateUserConfig: (userConfig: Partial) => boolean;