import { type PhoneInputProps } from './types'; /** * Поле ввода номера телефона. * @param props Свойства. * @return Элемент. */ export declare function PhoneInput({ value, defaultValue, onInput, onChange, ...restProps }: PhoneInputProps): import("react").JSX.Element;