import { Optional } from "../../types"; export declare class NamespaceBag { private namespaces; constructor(namespaces?: {}); has(namespace: string): boolean; set(namespace: string, uri: string): void; serialize(): Optional<{}>; isEmpty(): boolean; isNotEmpty(): boolean; }