/** * Creates a new vec2 initialized with the given values. */ declare function fromValues(x: number, y: number): number[]; export = fromValues;