import type { PropsWithChildren } from 'react';
import React from 'react';
export type DragAndDropContainerProps = PropsWithChildren<{
    className?: string;
    draggable?: boolean;
    onSetNewOrder?: (newOrder: number[]) => void;
}>;
export declare const DragAndDropContainer: ({ children, className, draggable, onSetNewOrder, }: DragAndDropContainerProps) => React.JSX.Element;
