import { TokenType, Token } from '../type'; import type { IFormulaValue, IFormulaDataSource, FormulaValueOptions } from '../type'; import FormulaValue from '../base/value'; declare class FormulaNull extends FormulaValue implements IFormulaValue { tokenType: TokenType; constructor(token: Token, options?: FormulaValueOptions); _execute(dataSource: IFormulaDataSource, options: FormulaValueOptions): any; } export default FormulaNull;