import { Type } from '@nestjs/common'; declare const dtosSymbol: unique symbol; export declare function getEntityDtos(entity: Type & { [dtosSymbol]?: ReturnType; }): { CreateEntityDto: Type>; UpdateEntityDto: Type>; }; export declare function createEntityDtos(entityType: Type): { CreateEntityDto: Type>; UpdateEntityDto: Type>; }; export {};