import { CommandBus } from '@nestjs/cqrs'; import { IImportHistory, IPagination, UploadedFile } from '@metad/contracts'; import { ImportHistoryService } from './../import-history'; export declare class ImportAllController { private readonly importHistoryService; private readonly commandBus; constructor(importHistoryService: ImportHistoryService, commandBus: CommandBus); importAll(): Promise>; parse({ importType }: { importType: any; }, file: UploadedFile): Promise; }