import type { UserConfig } from '../types/cli.types'; /** * Recursively strip dangerous keys from an object to prevent prototype pollution. */ export declare function sanitizeObject>(obj: T): T; export declare const loadUserConfig: () => UserConfig; export declare const saveUserConfig: (config: UserConfig) => void; export declare const resetUserConfig: () => void;