/** @packageDocumentation
 * @module Utilities
 */
/** Describes 2d points.
 * @public @deprecated in 4.2.x - will not be removed until after 2026-06-13. Use @core/geometry [[Geometry.XAndY]] or your own custom type.
 */
export interface PointProps {
    readonly x: number;
    readonly y: number;
}
//# sourceMappingURL=PointProps.d.ts.map