import { ObjectDirective } from 'vue';
declare type BindingValue = number;
interface ExtendedDirective extends ObjectDirective<HTMLElement, BindingValue> {
    pointerdownEvent: (e: PointerEvent) => void;
    pointerupEvent: (e: PointerEvent) => void;
    timeout: ReturnType<typeof setTimeout> | null;
}
export declare const vLongpress: ExtendedDirective;
export {};
