import { Coordinate } from "./coordinate"; import type * as p from "../../core/properties"; export declare namespace XY { type Attrs = p.AttrsOf; type Props = Coordinate.Props & { x: p.Property; y: p.Property; }; } export interface XY extends XY.Attrs { } export declare class XY extends Coordinate { properties: XY.Props; constructor(attrs?: Partial); } //# sourceMappingURL=xy.d.ts.map