/** * Represents a map between prefixes and their corresponding URIs. */ export declare class NamespaceMap { readonly namespaces: Record; constructor(namespaces: Record); /** * Retrieves the URI for a given prefix. * @param prefix - The prefix for which to retrieve the URI. * @returns The corresponding URI, or an empty string if the prefix is not found. */ getByPrefix(prefix: string): string; }