import { Ref } from 'vue';
import { FormColumn } from '../../../types';

export declare function useDraggable(emit: any, columns: Ref<FormColumn[]>): {
    draggableOptions: {
        options: {
            draggable: string;
            animation: number;
            ghostClass: string;
            onStart: () => void;
            onEnd: (evt: any) => void;
        };
    }[];
    dragging: Ref<boolean>;
};
