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