export interface CachlyConfig { jwt?: string; apiUrl?: string; brainInstanceId?: string; } export declare const API_URL: () => string; export declare const JWT: () => string; export declare function readConfig(): Promise; export declare function writeConfig(config: CachlyConfig): Promise; export declare function getAuthHeaders(): Promise>; /** Typed fetch wrapper with error handling */ export declare function apiFetch(path: string, init?: RequestInit): Promise; //# sourceMappingURL=config.d.ts.map