import { default as Sortable } from 'sortablejs';
import { Directive } from 'vue';

export interface DraggableOption {
    selector: string;
    options: Sortable.Options;
}
export declare const draggable: Directive;
