export declare const DEFAULT_NAMESPACES: Record; /** * Records an array of overlapping objects that is shifted and unshifted as the parser traverses. */ export default function createNamespaceContext(additionalNsMapping: Record): { push: (x: Record) => number; pop: () => Record | undefined; location: (prefix: string | undefined) => string | null | undefined; };