export type ElementPointMoveOptions = {
    selection?: number[];
    precision?: number;
    [key: string]: any;
};
/**
 * ElementPointMove interaction.
 */
export declare function ElementPointMove(elementPointMoveOptions?: ElementPointMoveOptions): (context: any, _: any, emitter: any) => () => void;
