import React, { FC, ReactNode } from 'react'; import { IPhoneInputProps } from 'react-phonenr-input'; export interface IFormikUiPhoneInputProps extends Omit { /** Sets the Name of the Input Field */ name: string; /** Sets the main Label for the Input Field */ label?: ReactNode; /** Sets the field as requierd, if label is passed, an * is added to the end of the main label. Validation will only work if you pass the required() method in the yup validation schema */ required?: boolean; } export declare const PhoneInput: FC; declare const _default: React.ElementType; export default _default;