/** * OAuth Helper * * Helper functions for OAuth authentication flow */ export type OAuthProvider = 'google' | 'github'; export interface OAuthResult { success: boolean; error?: string; } export declare function loginWithOAuth(provider: OAuthProvider, signal?: AbortSignal, onUrl?: (url: string) => void): Promise; //# sourceMappingURL=oauth-helper.d.ts.map