UNPKG

@hhgtech/hhg-components

Version:
18 lines (17 loc) 530 B
import React, { FC } from 'react'; import { Country } from 'react-phone-number-input'; interface FlagProps { country: Country; countryName: string; flagUrl?: string; } type PhoneInputProps = { className?: string; error?: boolean; } & { [key: string]: any; }; export declare const FlagComponent: (props: FlagProps) => React.JSX.Element; export declare const PhoneInput: FC<PhoneInputProps>; export declare const PhoneInputWithCode: (props: PhoneInputProps) => React.JSX.Element; export {};