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