import { NativeDeletable } from "./NativeDeletable";
export interface NativeIntPoint extends NativeDeletable {
    x: number;
    y: number;
}
