import type { ReactNode } from 'react'; import React from 'react'; import type { DraggableProps } from 'react-draggable'; export type PartialDraggableProps = Partial>; declare const DraggableComponent: (props: { children: ReactNode; } & PartialDraggableProps) => React.JSX.Element; export default DraggableComponent;