/** * Returns the inverse of the components of a number. */ declare function inverse(out: number[], a: number[]): number[]; export default inverse;