import React from 'react';
import type { FormControlProps, InputFormulaControlSchema } from '../types';
interface InputFormulaProps extends FormControlProps, Omit<InputFormulaControlSchema, 'options' | 'inputClassName' | 'className' | 'descriptionClassName'> {
}
export declare class InputFormulaRenderer extends React.Component<InputFormulaProps> {
    static defaultProps: Pick<InputFormulaControlSchema, 'inputMode' | 'borderMode' | 'evalMode'>;
    ref: any;
    formulaRef(ref: any): void;
    validate(): string | void;
    render(): JSX.Element;
}
export {};
