import React from 'react';
interface IProps {
    required?: boolean;
    error?: string;
    value: string;
    onChange: (newValue: string) => void;
    css: string[];
    label: string;
    description?: string;
    type?: "text" | "multiline";
    allowTab?: boolean;
}
export declare const FieldEditor: React.FunctionComponent<IProps>;
export {};
