export type StoredCredentials = { version: 1; baseUrl: string; clientId: string; accessToken: string; }; export declare function credentialsPath(): string; export declare function loadCredentials(): Promise; export declare function saveCredentials(data: StoredCredentials): Promise; export declare function clearCredentials(): Promise;