/** * expo-uae-pass * * Main entry point for UAE Pass authentication package */ export { configureUAEPass, getUAEPassConfig, getUAEPassAppSchemes, getUAEPassEnvironment, UAE_PASS_ACR_VALUES, type UAEPassConfig, type UAEPassAppSchemes, } from './config/uaePassConfig'; export { useUAEPassAuth, type UseUAEPassAuthOptions, type UseUAEPassAuthReturn, } from './hooks/useUAEPassAuth'; export { authenticateWithUAEPass, authenticateWithUAEPassBrowser, prepareUAEPassAuth, isUAEPassAppInstalled, } from './services/uaePassService'; export { default as UAEPassWebViewAuth } from './components/UAEPassWebViewAuth'; export type { UAEPassAuthResult, UAEPassWebViewAuthParams, UAEPassCallbackRequest, UAEPassCallbackResponse, } from './types';