import React from 'react'; export interface DraggableThingProps { id: string; type: string; width: number; height: number; } interface DraggableThingsProps { openDialogs: DraggableThingProps[]; handleClose: (id: string) => void; } export declare const DraggableThings: React.FC; export {};