import { UltraCalcFunctionMode } from "./UltraCalcFunctionMode";
import { ExcelCalcValue } from "./ExcelCalcValue";
import { ExcelCalcNumberStack } from "./ExcelCalcNumberStack";
import { Type } from "igniteui-react-core";
/**
 * @hidden
 */
export declare class UltraCalcFunctionModeMult extends UltraCalcFunctionMode {
    static $t: Type;
    protected evaluate(a: ExcelCalcNumberStack, b: number): ExcelCalcValue;
    protected get_name(): string;
}
