import { BuiltInFunctionBase } from "./BuiltInFunctionBase";
import { ExcelCalcValue } from "./ExcelCalcValue";
import { ExcelCalcNumberStack } from "./ExcelCalcNumberStack";
import { Dictionary$2 } from "igniteui-react-core";
import { Type } from "igniteui-react-core";
import { DayOfWeek } from "igniteui-react-core";
/**
 * @hidden
 */
export declare class UltraCalcFunctionWorkDay extends BuiltInFunctionBase {
    static $t: Type;
    protected evaluate(a: ExcelCalcNumberStack, b: number): ExcelCalcValue;
    canParameterBeEnumerable(a: number): boolean;
    private _an;
    protected get_name(): string;
    get name(): string;
    protected get_minArgs(): number;
    get minArgs(): number;
    protected get_maxArgs(): number;
    get maxArgs(): number;
    static _ak(a: ExcelCalcValue[], b: Dictionary$2<Date, any>, c: ExcelCalcValue): {
        ret: boolean;
        p1: Dictionary$2<Date, any>;
        p2: ExcelCalcValue;
    };
    static _al(a: Date): boolean;
    static _am(a: DayOfWeek): boolean;
    doesParameterAllowIntermediateResultArray(a: number, b: boolean): boolean;
}
