import { ReactNode } from 'react'; export interface DragDropProviderProps { children: ReactNode; /** @deprecated kept for API compatibility, now a no-op */ backend?: unknown; /** @deprecated kept for API compatibility, now a no-op */ options?: unknown; } export default function DragDropProvider({ children }: DragDropProviderProps): import("react").JSX.Element;