import type { IFormulaDataSource, FormulaValueOptions, Token } from '../type'; import AbsFormulaFunction from '../base/function'; declare const CAST_MAP: { string: (value: any) => string; number: (value: any, options: FormulaValueOptions) => import("decimal.js").default; boolean: (value: any) => boolean; }; declare class FormulaFunctionCAST extends AbsFormulaFunction { mayChange: boolean; constructor(token: Token, options: FormulaValueOptions, name: string, argMin: number, argMax: number); _execute(dataSource: IFormulaDataSource, options: FormulaValueOptions): any; } export { CAST_MAP }; export default FormulaFunctionCAST;