export declare const FormulaUserKey = "$user"; export declare const FormulaUserSessionKey = "$userSession"; export type SteedosFieldFormulaQuoteTypeConfig = { object_name: string; field_name: string; is_formula?: boolean; is_own?: boolean; }; export type SteedosFormulaVarPathTypeConfig = { field_name: string; reference_from: string; reference_to_field?: string; is_formula?: boolean; }; export type SteedosFormulaParamTypeConfig = { key: string; path: any; value: any; }; export type SteedosFormulaVarTypeConfig = { key: string; paths: Array; is_user_var?: boolean; is_user_session_var?: boolean; is_simple_var?: boolean; }; export type SteedosFieldFormulaTypeConfig = { _id: string; object_name: string; field_name: string; data_type: string; formula_blank_value: SteedosFormulaBlankValue; formula: string; quotes: Array; vars: Array; }; export type SteedosQuotedByFieldFormulasTypeConfig = { ownConfigs: Array; otherConfigs: Array; allConfigs: Array; }; export declare enum SteedosFormulaBlankValue { zeroes = "zeroes", blanks = "blanks" } export type SteedosFormulaOptions = { returnType?: string; blankValue?: SteedosFormulaBlankValue; };