import { ValueType } from './constants'; import { ExpressionSideType, Operator } from './statementTypes'; import { AdditionalDataSources } from '../../utils/types'; export declare const detectValueType: (value: any) => ValueType; export declare const parseValueByType: (rawValue: any, valueType: ValueType, additionalSources: AdditionalDataSources) => ExpressionSideType; export declare const getInitialOperator: (valueType: ValueType) => Operator; export declare const shouldShowRightValue: (operator: Operator) => boolean;