/// export declare namespace CountryCodeInputComponent { export type Props = CountryCodeInputTypes & { children?: React.ReactNode; inputType?: 'tel' | 'text' | 'number'; disabledCountryCodeSelect?: boolean; disabledCountryCodeInput?: boolean; }; type SelectedCountryType = { dial_code?: string; code?: string; }; type InputType = 'normal' | 'error'; export type CountryCodeInputTypes = { label?: string; value?: number; selectedCountry?: SelectedCountryType; type?: InputType; message?: string; setSelectedCountry?: any; setValue?: any; showCountryCode?: boolean; dropdownHeight?: string; placeholder?: string; }; export {}; }