export default TextField;
declare class TextField extends EditorComponent<import("../../../EditorComponent").EditorComponentProps, import("../../../EditorComponent").EditorComponentState> {
    static defaultProps: {
        label: undefined;
        helperText: undefined;
        fullWidth: boolean;
        multiline: boolean;
        type: string;
        hide_wrapper_in_default_mode: boolean;
        errorDelay: number;
        SaveIcon: React.ComponentType<{}>;
        ResetIcon: React.ComponentType<import("material-ui/SvgIcon").SvgIconProps>;
        EditIcon: React.ComponentType<import("material-ui/SvgIcon").SvgIconProps>;
        cacheKeyPrefix: string;
        contentEditable: boolean | undefined;
    };
    constructor(props: import("../../../EditorComponent").EditorComponentProps);
    onBeforeDrop: () => void;
}
import EditorComponent from "../../../EditorComponent";
import React from "react";
