import type { RenderContext } from "./render-context.js"; /** * Specifier to import a MATERIALIZED shared enum into an entity file in * `entityPkg`. The shared module sits at the entity-module target root; in * package layout the entity may be nested, so the `./enums` base is adjusted by * package depth. */ export declare function sharedEnumImportSpecifier(ctx: RenderContext, entityPkg: string | undefined): string; /** * Specifier to import an externally-PROVIDED enum. Resolved from codegen config * (`providedEnumModule`); throws a clear codegen-time error when unset. */ export declare function providedEnumImportSpecifier(ctx: RenderContext, enumName: string): string; //# sourceMappingURL=enum-import.d.ts.map