import type { NumberFormatAllProps, NumberFormatLink } from './NumberFormatBase';
export type NumberFormatPhoneNumberProps = Omit<NumberFormatAllProps, 'currency' | 'currencyDisplay' | 'currencyPosition' | 'compact'> & {
    /** Wraps the formatted phone value in a clickable link: `tel` (default) or `sms`. */
    link?: NumberFormatLink | true;
};
declare function NumberFormatPhoneNumber({ link, className, ...rest }: NumberFormatPhoneNumberProps): import("react/jsx-runtime").JSX.Element;
declare namespace NumberFormatPhoneNumber {
    var displayName: string;
}
export default NumberFormatPhoneNumber;
