import type { Dialect } from '../../../dialect'; import type { ModelEntry } from './model-entry'; import type { NameSpace } from './name-space'; /** * This is the dialect namespace, which sits below the global namespace. */ export declare class DialectNameSpace implements NameSpace { private entries; constructor(dialect: Dialect); getEntry(name: string): ModelEntry | undefined; setEntry(_name: string, _value: ModelEntry, _exported: boolean): void; }