export interface JcliConfig { baseUrl: string; token: string; email: string; } export declare function loadConfig(): JcliConfig; export declare function saveConfig(config: Partial): void; export declare function getConfigPath(): string;