UNPKG

@openhands/ui

Version:
8 lines (7 loc) 390 B
import { PropsWithChildren } from 'react'; import { BaseProps, HTMLProps } from '../../shared/types'; export type DialogProps = HTMLProps<"div"> & { open: boolean; onOpenChange(value: boolean): void; } & BaseProps; export declare const Dialog: ({ open, onOpenChange, className, children, testId, }: PropsWithChildren<DialogProps>) => import("react/jsx-runtime").JSX.Element | null;