/** * Error Detection Helpers * * Utilities for detecting and classifying OAuth-related errors. */ export declare function extractStatusCode(upstreamError: unknown): number | undefined; export declare function isGoogleAccountVerificationRequiredMessage(lower: string): boolean; export declare function extractGoogleAccountVerificationUrl(message: string): string | null;