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