/**
 * Calculates the dot product of two vec2's.
 */
declare function dot(a: number[], b: number[]): number;

export = dot;
