import type { PgTsPreRenderHook } from "../config-types-v4"; /** * Pre-render hook that processes @type tags in database comments. * * This hook handles two types of @type tags: * * 1. Type-level tags (on domains, ranges, enums, composite types): * - Removes the generated declaration for that type * - Updates all references to that type to use the tagged type instead * * 2. Column-level tags (on table/view columns): * - Updates the property type in the generated interface * * This is applied by default in V3 configs. In V4 configs, it must be explicitly * added to PgTsGeneratorConfig.preRenderHooks. */ declare const applyTaggedComments: PgTsPreRenderHook; export default applyTaggedComments;