UNPKG

@kryptogo/kryptogokit-sdk-react

Version:

KryptogoKit offers a comprehensive web3 wallet solution with seamless KryptoGO Auth integration and multi-wallet connection support. Designed for users. Built for developers.

10 lines (9 loc) 409 B
import { LOGIN_TYPE } from '@kryptogo/auth/src/types'; export declare function useLoginForm(): { value: string; setValue: import("react").Dispatch<import("react").SetStateAction<string>>; inputType: "email" | "phone"; setInputType: import("react").Dispatch<import("react").SetStateAction<"email" | "phone">>; isValidInput: boolean; handleLogin: (type: LOGIN_TYPE) => Promise<void>; };