import { ReactElement } from 'react'; export interface ThreeDSecureProps { url: string; returnUrl?: string; onReturn?: () => unknown; } export declare function ThreeDSecure({ url, returnUrl, onReturn }: ThreeDSecureProps): ReactElement;