import { WebViewMessageEvent } from 'react-native-webview';
import type { TossPaymentRequestDataTypes } from './types/payment.types';
declare type Props = {
    clientKey: string;
    payment: TossPaymentRequestDataTypes;
    onWebViewMessageReceived: (e: WebViewMessageEvent) => void;
    detectIsLoading: (isLoading: boolean) => void;
};
declare const Payment: ({ clientKey, payment, onWebViewMessageReceived, detectIsLoading, }: Props) => JSX.Element;
export default Payment;
