UNPKG

@hashport/widget

Version:
10 lines (9 loc) 354 B
/// <reference types="react" /> type DialogProps = { open: boolean; handleClose: () => void; children: React.ReactNode; }; export declare const DialogContext: import("react").Context<(status: boolean) => void>; export declare const Dialog: ({ open, handleClose, children }: DialogProps) => import("react/jsx-runtime").JSX.Element; export {};