/// <reference types="react" />
import { ValueType } from './constants';
import { Side } from './statementTypes';
import type { Component } from 'grapesjs';
export interface ValueInputRendererProps {
    component: Component;
    side: Side;
    type: ValueType;
    value: any;
    onChange: (side: Side, value: any, type: ValueType) => void;
}
export declare const ValueInputRenderer: import("react").NamedExoticComponent<ValueInputRendererProps>;
