export type SupabaseConfig = { url: string; publishableKey: string; }; export declare function getSupabaseConfig(): SupabaseConfig; export type Credentials = { supabaseUrl: string; publishableKey: string; accessToken: string; refreshToken: string; expiresAt: number | null; user: { id: string; email: string | null; }; }; export declare function readCredentials(): Promise; export declare function writeCredentials(credentials: Credentials): Promise; export declare function clearCredentials(): Promise; //# sourceMappingURL=config.d.ts.map