import { BuiltInFunctionBase } from "./BuiltInFunctionBase"; import { ExcelCalcValue } from "./ExcelCalcValue"; import { ExcelCalcNumberStack } from "./ExcelCalcNumberStack"; import { Type } from "igniteui-webcomponents-core"; import { List$1 } from "igniteui-webcomponents-core"; /** * @hidden */ export declare class UltraCalcFunctionMin extends BuiltInFunctionBase { static $t: Type; protected evaluate(a: ExcelCalcNumberStack, b: number): ExcelCalcValue; canParameterBeEnumerable(a: number): boolean; static _ak(a: List$1): ExcelCalcValue; protected get_name(): string; get name(): string; protected get_minArgs(): number; get minArgs(): number; protected get_maxArgs(): number; get maxArgs(): number; doesParameterAllowIntermediateResultArray(a: number, b: boolean): boolean; }