import { BridgeCustomerStatus, type BridgeVirtualBankAccount } from '@funkit/api-base';
import React from 'react';
interface VerifyAccountScreenProps {
    customerStatus: BridgeCustomerStatus | undefined;
    /** Complements customer status - if user has KYC in progress with recoverable errors */
    isSoftRejected?: boolean;
    isLoading?: boolean;
    withActionButton?: boolean;
    onVirtualFiatCreated?: (account: BridgeVirtualBankAccount) => void;
    onShowKyc?: () => void;
    onError?: () => void;
    onBack?: () => void;
}
export declare const VerifyAccountScreen: ({ customerStatus, isSoftRejected, isLoading, withActionButton, onVirtualFiatCreated, onShowKyc, onError, onBack, }: VerifyAccountScreenProps) => React.JSX.Element;
export {};
