import React from 'react'; import { ColorValue } from 'react-native'; import { WebViewError, WebViewHttpError } from 'react-native-webview/lib/WebViewTypes'; interface Props { url: string; onBack?: () => void; onResult: (result: WebViewResult) => void; onError?: (error: WebViewError | WebViewHttpError) => void; loadingColor?: ColorValue; } export declare type WebViewResult = 'close' | 'authorized' | 'rejected' | 'expired'; declare const TabbyPaymentWebView: React.FC; export { TabbyPaymentWebView };