import React from 'react'; export interface OAuthWebViewProps { url: string; onClose: () => void; onSuccess: (code: string) => void; platform?: string; onComplete?: () => void; username?: string; jwtToken?: string | null; logoutOnMount?: boolean; } export declare const OAuthWebView: React.FC; //# sourceMappingURL=OAuthWebView.d.ts.map