import { type BridgeAccount } from '@funkit/api-base';
import React from 'react';
export type CreateAccountFormData = Omit<BridgeAccount, 'guid'>;
interface CreateAccountScreenProps {
    onNext: (params: {
        kycLink: string;
    }) => void;
    onError: (error: {
        hasError: true;
        errorCode: string;
        rawErrorObject: unknown;
    }) => void;
}
export declare function CreateAccountScreen({ onNext, onError, }: CreateAccountScreenProps): React.JSX.Element;
export {};
