import { IDataParser, IEntity, IFixture } from './interface'; import { DataSource } from 'typeorm'; export declare class Builder { private readonly dataSource; private readonly parser; private readonly ignoreDecorators; entities: any; constructor(dataSource: DataSource, parser: IDataParser, ignoreDecorators: boolean); private callExecutors; private buildEntity; build(fixture: IFixture): Promise; }