import { NamespaceType } from './NamespaceType';
export declare class Namespace {
    type: NamespaceType;
    uri: string;
    prefix: string;
    mangledName: string;
    constructor(type: NamespaceType, uri: string, prefix: string);
    toString(): string;
    private static _knownNames;
    private static _hashNamespace;
    private mangleName;
    isPublic(): boolean;
    get reflectedURI(): string;
    static PUBLIC: Namespace;
}
//# sourceMappingURL=Namespace.d.ts.map