import type { PgColumn, PgTable } from '../abstractions/index.js'; import { ContentEntityModel } from '../content-entity-model.js'; export declare function findEntityModel(models: ContentEntityModel[], entityName: string): ContentEntityModel; export declare function removeColumnByName(columns: PgColumn[], name: string): void; export interface NameOverride { [name: string]: [string, string?]; } export declare function renameDbItem(item: PgTable | PgColumn, newName: string, displayName?: string): void; export declare function applyNameOverrides(model: ContentEntityModel, overrides: NameOverride): void;