import { PluginObject } from 'vue'; /** * Available formats: * NATIONAL — Example: "(213) 373-4253" * INTERNATIONAL — Example: "+1 213 373 4253" * * A ticket has been opened for Google in order to fix the National format. It shouldn't have parenthesis. * https://issuetracker.google.com/issues/153616208) */ export declare enum PhoneNumberFormat { INTERNATIONAL = "INTERNATIONAL", NATIONAL = "NATIONAL" } export declare class PhoneFilter { static format(text: string, format?: PhoneNumberFormat): string; } declare const PhoneFilterPlugin: PluginObject; export default PhoneFilterPlugin; //# sourceMappingURL=phone.d.ts.map