import * as React from 'react';
import { BaseControlState } from '../_Common/BaseControl/BaseControl';
import { UpInputProps } from '../Input/types';
export default class UpEmail extends React.Component<UpInputProps, BaseControlState<string>> {
    static defaultProps: UpInputProps;
    constructor(p: any, c: any);
    emailHandleChangeEvent: (event: any, value: any, error: any) => void;
    get isControlled(): boolean;
    get currentValue(): string;
    get currentError(): string;
    render(): JSX.Element;
}
