export interface InfiniteCanvasTouch extends Touch {
    /**
     * the x coordinate of the point on {@link InfiniteCanvas} where the touch is
     */
    infiniteCanvasX: number;
    /**
     * the y coordinate of the point on {@link InfiniteCanvas} where the touch is
     */
    infiniteCanvasY: number;
}
