import type { FunctionDefinition } from '../../definition_types'; /** * The weighted average of a numeric expression. * * @example * FROM employees * | STATS w_avg = WEIGHTED_AVG(salary, height) BY languages * | EVAL w_avg = ROUND(w_avg) * | KEEP w_avg, languages * | SORT languages */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=weighted_avg.d.ts.map