import { ChildProperty } from '@syncfusion/ej2-base';
/**
 * Defines and processes coordinates
 */
export declare class Point extends ChildProperty<Point> {
    /**
     * Sets the x-coordinate of a position
     *
     * @default 0
     */
    x: number;
    /**
     * Sets the y-coordinate of a position
     *
     * @default 0
     */
    y: number;
}
