@rainbow-me/rainbowkit
Version:
The best way to connect a wallet
11 lines (10 loc) • 323 B
TypeScript
import React, { 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): React.JSX.Element;
export {};