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