/// <reference types="react" />
import { BaseControlComponent } from "../_Common/BaseControl/BaseControl";
import { UpRichTextProps } from "./types";
export default class UpRichText extends BaseControlComponent<UpRichTextProps, string> {
    static defaultProps: UpRichTextProps;
    constructor(p: any, c: any);
    showError(): boolean;
    showSuccess(): boolean;
    renderControl(): JSX.Element;
    getValue(event: any): any;
}
