@hashport/widget
Version:
React widget for hashport bridge
10 lines (9 loc) • 354 B
TypeScript
/// <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 {};