UNPKG

@up-group-ui/react-controls

Version:
13 lines (12 loc) 505 B
import React from 'react'; import { BaseControlState } from '../_Common/BaseControl/BaseControl'; import { UpPhoneProps } from './types'; export default class UpPhone extends React.Component<UpPhoneProps, BaseControlState<string>> { 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; }