UNPKG

next

Version:

The React Framework

12 lines (11 loc) 374 B
import * as React from 'react'; export type DialogProps = { children?: React.ReactNode; 'aria-labelledby': string; 'aria-describedby': string; className?: string; onClose?: () => void; dialogResizerRef?: React.RefObject<HTMLDivElement | null>; } & React.HTMLAttributes<HTMLDivElement>; declare const Dialog: React.FC<DialogProps>; export { Dialog };