import React from 'react';
export interface InputConditionProps {
    value: any;
    onChange: (value: any) => void;
    disabled?: boolean;
    placeholder?: string;
    hasError?: boolean;
    formula?: any;
    fields?: any;
    modalSize?: string;
    renderEtrValue?: any;
}
declare function InputCondition({ value, onChange, disabled, placeholder, hasError, fields, formula, modalSize, renderEtrValue }: InputConditionProps): React.JSX.Element;
export default InputCondition;
