import { Entity } from '../../domain';
import { Type } from 'typ3s';
import { SchemaHelper } from '../../infrastructure/schemaHelper';
export declare class CreateEntitiesService {
    private readonly helper;
    constructor(helper: SchemaHelper);
    getEntities(name: string, type: Type): Entity[];
    private typeToEntities;
    private objTypeToEntities;
}
