import React from 'react'; interface KycFlowProps { apiBaseUrl: string; sessionId: string; serverKey: string; deviceType?: string; startAtQr?: boolean; onClose?: () => void; mobileBaseUrl?: string; } declare const KycFlow: React.FC; export { KycFlow, type KycFlowProps };