import { type AsYouType, type CountryCode, type MetadataJson } from 'libphonenumber-js/core';
import type { MaskitoPhoneParams } from '../phone-mask';
export declare function getPhoneTemplate({ formatter, value, separator, countryIsoCode, metadata, format, }: {
    formatter: AsYouType;
    value: string;
    separator: string;
    countryIsoCode?: CountryCode;
    metadata?: MetadataJson;
    format?: MaskitoPhoneParams['format'];
}): string;
