import React, { type ComponentProps } from 'react'; import { Country } from '../../../types/index.js'; import type { FieldFeedbackProps } from '../../FieldFeedback'; import { InputNumberStyled } from './style'; type InputProps = ComponentProps; export interface PhoneInputBaseProps extends Omit { phoneValue?: string; countries: Country[]; isCountriesLoading: boolean; countryValue?: Country; onChange?: (value: string) => void; hasError: boolean; helperText?: string; onCountryChange?: (country: Country) => void; onPhoneChange?: (value: string) => void; feedback?: FieldFeedbackProps | null; } declare const _default: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export default _default;