import React from 'react'; import { InputContainerProps } from '../base/InputContainer'; import { InputProps } from '../types'; /** * Text Field component. It follows the props from react-final-form */ export interface IInputPhone extends InputProps, Pick { /** Optional passed in inline styles */ style?: object; placeholder?: string; } export declare const InputPhone: React.FC;