import { type Code } from "ts-poet"; import { MetaObject } from "@metaobjectsdev/metadata"; import { type RenderContext } from "../render-context.js"; /** * Render the Drizzle table definition for one entity, including: * - FK .references() on FK columns derived from relationship children * - relations() block at the end of the section * * Returns a Code object so ts-poet can deduplicate imports when this composes * with the rest of the entity file. Biome formatting runs after composition. */ export declare function renderDrizzleSchema(obj: MetaObject, ctx: RenderContext): Code; //# sourceMappingURL=drizzle-schema.d.ts.map