declare const DEFAULT_API_URL = "https://api.q5m.ai"; interface ResolvedConfig { apiUrl: string; apiKey?: string; context: string; groupId?: string; credentialSource: "environment" | "config" | "none"; path: string; } interface ConfigOptions { env?: NodeJS.ProcessEnv; path?: string; home?: string; } declare function resolveConfigPath(options?: ConfigOptions): string; declare function loadConfig(options?: ConfigOptions): Promise; declare function saveAuthentication(apiUrl: string, apiKey: string, options?: ConfigOptions): Promise; declare function clearAuthentication(options?: ConfigOptions): Promise; declare function saveContext(context: string, options?: ConfigOptions): Promise; export { type ConfigOptions as C, DEFAULT_API_URL as D, type ResolvedConfig as R, saveContext as a, clearAuthentication as c, loadConfig as l, resolveConfigPath as r, saveAuthentication as s };