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

export = inverse;
