export type SupabaseClientErrorCode = 'SUPABASE_CLIENT_ERROR' | 'INVALID_INPUT' | 'OPERATION_FAILED'; export interface SupabaseClientErrorOptions { cause?: Error; code?: SupabaseClientErrorCode; context?: Record; } export declare class SupabaseClientError extends Error { readonly code: SupabaseClientErrorCode; readonly context?: Record; constructor(message: string, options?: SupabaseClientErrorOptions); }