import { type HTMLAttributes, type Ref } from 'react'; import { type WithTestId } from '../types'; export interface PhoneInputMenuOpenerProps extends HTMLAttributes, WithTestId { rootRef?: Ref; imageSrc?: string; visuallyOpen?: boolean; visuallyDisabled?: boolean; } /** * Кнопка меню выбора маски ввода телефона. * @param props Свойства. * @return Элемент. */ export declare function PhoneInputMenuOpener({ rootRef, visuallyOpen, visuallyDisabled, imageSrc, className, ...restProps }: PhoneInputMenuOpenerProps): import("react").JSX.Element;