@datamonsterr/vdt-dashboard
Version:
12 lines • 443 B
TypeScript
import type { UniqueIdentifier } from '@dnd-kit/core';
import type { ReactNode } from 'react';
interface DroppableProps {
id: UniqueIdentifier;
children: ReactNode;
className?: string;
data?: Record<string, any>;
disabled?: boolean;
}
export declare function Droppable({ id, children, className, data, disabled, }: DroppableProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=Droppable.d.ts.map