@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) • 338 B
TypeScript
import { type ReactNode } from 'react';
interface DialogProps {
open: boolean;
onClose: () => void;
titleId: string;
onMountAutoFocus?: (event: Event) => void;
children: ReactNode;
}
export declare function Dialog({ children, onClose, open, titleId }: DialogProps): import("react/jsx-runtime").JSX.Element;
export {};