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