UNPKG

@fluido/react-components

Version:
19 lines (18 loc) 528 B
/// <reference types="react" /> import { SubmitHandler } from 'react-hook-form'; export interface DialogProps { title?: string; open?: boolean; lock?: boolean; loading?: boolean; fullscreen?: boolean; browser?: boolean; actions?: { [key: string]: VoidFunction; }; footer?: React.ReactNode; onClose?: (close: boolean) => void; onSubmit?: SubmitHandler<Record<string, any>>; } declare const Dialog: React.FunctionComponent<DialogProps>; export default Dialog;