export declare class XmlEncode {
    static XML_NAME_NOT_ALLOWED_CHARACTERS: string[];
    static XML_BEGINNING_NAME_NOT_ALLOWED_CHARACTERS: string[];
    static encodeName(value: string): string;
    static decodeName(encodedName: string): string;
}
