import type { Selector, WithStabilizationInterval } from '../types/internal';
type Options = WithStabilizationInterval;
/**
 * Drags an element by an offset.
 */
export declare const drag: (selector: Selector, dragOffsetX: number, dragOffsetY: number, { stabilizationInterval, ...options }?: Options) => Promise<void>;
export {};
