import { PaperProps } from "@mui/material"; export declare function DraggablePaperComponent(props: PaperProps): import("react/jsx-runtime").JSX.Element; type ExtraButtonInfo = { handler: () => void; title: string; }; export declare function DraggableDialog({ title, onCancel, onOk, children, initialWidth, extraButton, }: { title?: string | JSX.Element; onCancel: () => void; onOk?: () => void; children: JSX.Element; initialWidth?: string; extraButton?: ExtraButtonInfo[]; }): import("react/jsx-runtime").JSX.Element; export {};