import type { PropsWithChildren } from 'react'; export type DragAndDropContainerProps = PropsWithChildren<{ className?: string; draggable?: boolean; onSetNewOrder?: (newOrder: number[]) => void; }>; export declare const DragAndDropContainer: ({ children, className, draggable, onSetNewOrder, }: DragAndDropContainerProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=DragAndDropContainer.d.ts.map