export interface IVec2 {
    x: number;
    y: number;
    set(x?: number, y?: number): this;
}
//# sourceMappingURL=IVec2.d.ts.map