import { AbstractPipeFormatter } from './AbstractPipeFormatter';
import { TelephoneNo } from '../model/TelephoneNo';
export declare class TelephoneNoFormatter extends AbstractPipeFormatter {
    static readonly NAME: string;
    private countryCodePunctuator;
    private extNoPunctuator;
    constructor();
    private setDefaultValues();
    format(data: any): string;
    parse(data: string): TelephoneNo;
    parseToOptions(args: any[]): any;
    getCountryCodePunctuator(): string;
    setCountryCodePunctuator(countryCodePunctuator: string): void;
    getExtNoPunctuator(): string;
    setExtNoPunctuator(extNoPunctuator: string): void;
}
