import { UseCase } from '../../../core/domain/useCases/UseCase'; import { IDatasetsRepository } from '../repositories/IDatasetsRepository'; export declare class LinkDatasetTypeWithMetadataBlocks implements UseCase { private datasetsRepository; constructor(datasetsRepository: IDatasetsRepository); /** * Links a dataset type with one or more metadata blocks. These metadata blocks will be shown when creating a dataset of this type. */ execute(datasetTypeId: number | string, metadataBlocks: string[]): Promise; }