import { BrokerBase } from './base'; export declare class ModelProcessor extends BrokerBase { listModel(): Promise<[string, { [key: string]: string; }][][]>; uploadDataset(privateKey: string, dataPath: string, gasPrice?: number, maxGasPrice?: number): Promise; calculateToken(datasetPath: string, usePython: boolean, preTrainedModelName: string, providerAddress?: string): Promise; downloadDataset(dataPath: string, dataRoot: string): Promise; acknowledgeModel(providerAddress: string, dataPath: string, gasPrice?: number): Promise; decryptModel(providerAddress: string, encryptedModelPath: string, decryptedModelPath: string): Promise; } //# sourceMappingURL=model.d.ts.map