Repository URL to install this package:
|
Version:
0.7.4+sf.2 ▾
|
import { 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): JSX.Element;
export {};