import { CreateTableProps } from "../../interfaces/builder.js"; import { RavenConfigType, SpecialTable } from "../../types/configurator.js"; import { NestRelationTableType } from "nest-compiler"; interface ReturnProps { refinedImports: { entity: string[]; module: string[]; }; refinedRelations: { entity: string[]; createDto: string[]; updateDto: string[]; module: string[]; }; typeOrmImports: string; } export declare const getTableRelationsReplacements: ({ relation, tableNameVariant: { camelCaseName, pluralLowerCaseName }, specialTable, }: CreateTableProps["tables"][0] & { config: RavenConfigType; relation: NestRelationTableType; specialTable?: SpecialTable; }) => ReturnProps; export {};