import { CouchdbService } from '~backend/couchdb/couchdb.service'; import { MallIntegrationService as CoreMallIntegrationService } from '~core/modules/mallIntegration'; import { UpdateMallIntegrationDto } from './mall-integration.model'; export declare class MallIntegrationService { private readonly couchdbService; mallIntegration: CoreMallIntegrationService; constructor(couchdbService: CouchdbService); static getMallForms(): any; read(): any; createOrUpdate(payload: UpdateMallIntegrationDto): any; delete(id: string): Promise; }