import type { IDragRefConfig } from '../Core/Types'; /** * Directive configuration. */ export interface IDragDirectiveConfig extends IDragRefConfig { /** * Data associated with this draggable. */ data?: TData; } /** * Make an element draggable. * * @param config - Configuration options. * @returns Directive. * * @public * * @example * ```html *
Drag me
* ``` */ export declare const drag: (...values: Parameters) => any; //# sourceMappingURL=DragDirective.d.ts.map