import { ReactNode, MouseEvent, CSSProperties } from 'react'; import { DragControls } from 'framer-motion'; interface DialogProps { children: ReactNode; index: number; order: number; dialogRef?: any; height?: number; onClick: (e: MouseEvent) => void; dragControls: DragControls; style?: CSSProperties; } export default function Dialog({ children, index, dialogRef, height, onClick, order, dragControls, style }: DialogProps): import("react").JSX.Element; export {};