import React from 'react'; import type { LocaleProps, ThemeProps } from 'jamis-core'; import type { FieldSimple, FormulaPickerProps, OperatorType } from '../../types'; export interface ValueProps extends ThemeProps, LocaleProps { value: any; data?: any; onChange: (value: any) => void; field: FieldSimple; op?: OperatorType; disabled?: boolean; formula?: FormulaPickerProps; popOverContainer?: any; renderEtrValue?: any; } export declare class Value extends React.Component { render(): JSX.Element; } export default Value;