import { UltraCalcFunctionVar } from "./UltraCalcFunctionVar";
import { ExcelCalcValue } from "./ExcelCalcValue";
import { ExcelCalcNumberStack } from "./ExcelCalcNumberStack";
import { Type } from "igniteui-react-core";
import { List$1 } from "igniteui-react-core";
/**
 * @hidden
 */
export declare class UltraCalcFunctionStdev extends UltraCalcFunctionVar {
    static $t: Type;
    protected evaluate(a: ExcelCalcNumberStack, b: number): ExcelCalcValue;
    canParameterBeEnumerable(a: number): boolean;
    static _al(a: List$1<number>, b: boolean): ExcelCalcValue;
    protected get_name(): string;
    protected get_minArgs(): number;
    protected get_maxArgs(): number;
    doesParameterAllowIntermediateResultArray(a: number, b: boolean): boolean;
}
