import { FC, PropsWithChildren } from 'react'; import './draggable-dialog.css'; export interface FcrDraggableModalProps { title?: string; width?: number; height?: number; onClose?: () => void; rootClassName?: string; } export declare const FcrDraggableModal: FC>;