/**
 * Creates a new vec2 initialized with values from an existing vector
 */
declare function clone(a: number[]): number[];

export = clone;
