/** * UAE Pass WebView Authentication Component * * Self-contained component for UAE Pass app-to-app authentication * Handles WebView flow when UAE Pass app IS installed */ import React from 'react'; interface UAEPassWebViewAuthProps { visible: boolean; authUrl: string; redirectUri: string; expectedState: string; onSuccess: (authorizationCode: string, state: string) => void; onCancel: () => void; onError: (error: string) => void; } declare const UAEPassWebViewAuth: React.FC; export default UAEPassWebViewAuth;