/** The marker that says "codegen owns this file" — drives the overwrite policy. */ export declare const GENERATED_HEADER = "@generated by @metaobjectsdev/codegen-ts"; /** Suffix for sibling user extension files (codegen never touches these). */ export declare const EXTRA_SUFFIX = ".extra"; /** Default outDir used by tests + as a sane default for generate(). */ export declare const DEFAULT_OUT_DIR = "./src/db/entities"; /** `@emitTanstack: false` — skip the TanStack hooks + grid generators for an entity. */ export declare const CODEGEN_ATTR_EMIT_TANSTACK = "emitTanstack"; /** `@emitGrid: true` — opt a TPH subtype IN to its own per-subtype grid (default: the polymorphic base grid is the single source). */ export declare const CODEGEN_ATTR_EMIT_GRID = "emitGrid"; /** `@emitForm: false` — skip the React form generator for an entity. */ export declare const CODEGEN_ATTR_EMIT_FORM = "emitForm"; /** `@emitRoutes: false` — skip the Fastify routes generator for an entity. */ export declare const CODEGEN_ATTR_EMIT_ROUTES = "emitRoutes"; //# sourceMappingURL=constants.d.ts.map