/** * OAuthLoginDialog Component * * OAuth login dialog that opens browser for authentication */ import type React from 'react'; import { type OAuthProvider } from '../../../core/auth/oauth-helper.js'; export interface OAuthLoginDialogProps { provider: OAuthProvider; onSuccess: () => void; onCancel: () => void; isActive?: boolean; } export declare function OAuthLoginDialog({ provider, onSuccess, onCancel, isActive }: OAuthLoginDialogProps): React.ReactElement; //# sourceMappingURL=OAuthLoginDialog.d.ts.map