@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.
11 lines (10 loc) • 349 B
TypeScript
export declare enum AccountAction {
PROFILE = "PROFILE",
SEND_TRANSACTION = "SEND_TRANSACTION",
RECEIVE_TOKEN = "RECEIVE_TOKEN"
}
export interface AccountModalProps {
open: boolean;
onClose: () => void;
}
export declare function AccountModal({ onClose, open }: AccountModalProps): import("react/jsx-runtime").JSX.Element | null;