/** * This is the components made by Ed, a former designer for the app (web version) */ /// /** @jsx jsx */ /** @jsxFrag React.Fragment */ import { jsx, SerializedStyles } from '@emotion/react'; interface OwnProps { children: React.ReactNode; onDragStart?: (e: React.DragEvent) => void; onDrop?: (e: React.DragEvent) => void; styleClass?: SerializedStyles; draggable?: boolean; uiref?: React.RefObject; } declare function MGDProcessBox(props: OwnProps): jsx.JSX.Element; export default MGDProcessBox; //# sourceMappingURL=MGDProcessBox.d.ts.map