@funkit/connect
Version:
Funkit Connect SDK elevates DeFi apps via web2 sign-ins and one-click checkouts.
16 lines (15 loc) • 496 B
TypeScript
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 {};