export type DragPreviewContent = {
    dom: HTMLElement;
    nodeSpacing?: {
        bottom: string;
        top: string;
    };
    nodeType: string;
};
export declare const dragPreview: (container: HTMLElement, dragPreviewContent: DragPreviewContent | DragPreviewContent[]) => () => HTMLElement;
