import { covar, max, media, mediana, min, moda, ve } from './estatistica'; export declare const DeleguaModuloEstatistica: { max: { tipoRetorno: string; funcao: typeof max; argumentos: { nome: string; tipo: string; }[]; }; min: { tipoRetorno: string; funcao: typeof min; argumentos: { nome: string; tipo: string; }[]; }; media: { tipoRetorno: string; funcao: typeof media; argumentos: { nome: string; tipo: string; }[]; }; ve: { tipoRetorno: string; funcao: typeof ve; argumentos: { nome: string; tipo: string; }[]; }; covar: { tipoRetorno: string; funcao: typeof covar; argumentos: { nome: string; tipo: string; }[]; }; mediana: { tipoRetorno: string; funcao: typeof mediana; argumentos: { nome: string; tipo: string; }[]; }; moda: { tipoRetorno: string; funcao: typeof moda; argumentos: { nome: string; tipo: string; }[]; }; }; //# sourceMappingURL=delegua-modulo.d.ts.map