import { type E164Number } from 'libphonenumber-js'; import { PhonenumberOptions } from './types'; export declare class Phonenumber { private readonly _country?; constructor(options: PhonenumberOptions); /** * * @param payload * @returns */ format(value: string): E164Number | undefined; /** * * @param value * @returns */ formatWhatsapp(value: string): string; /** * * @param value * @returns */ hidePhone(value: string): string; } //# sourceMappingURL=index.d.ts.map