import { ReactNode } from 'react'; interface DragPreviewProps { itemText: string; itemCount: number; height: number; maxWidth: number; } export declare function DragPreview(props: DragPreviewProps): ReactNode; export {};