import { SVGInstance } from "../../../node/instance/SVGInstance.js";
export declare class XYPositioning extends SVGInstance {
    moveTo(x: string | number, y: string | number): this;
    moveBy(dx: number, dy: number): this;
    x(): string | null;
    x(x: string | number): this;
    y(): string | null;
    y(y: string | number): this;
}
