import { type Entity } from "../../entity/entity"; import { Template } from "../template"; export type SourceCode = { label: string; lines: string[]; importKeys: string[]; }; export declare class Template__generated extends Template { constructor(); getTargetAndPath(): { target: string; path: string; }; render(): { body: string; importKeys: string[]; customHeaders: string[]; target: string; path: string; }; getEnumsSourceCode(entity: Entity): SourceCode | null; getBaseSchemaSourceCode(entity: Entity, importKeys?: string[]): SourceCode; getBaseListParamsSourceCode(entity: Entity): SourceCode | null; getSubsetSourceCode(entity: Entity): SourceCode | null; } //# sourceMappingURL=generated.template.d.ts.map