import { MallIntegrationService } from '~backend/mall-integration/mall-integration.service'; import { MallIntegrationUploadDto } from '~backend/mall-integration/mall-integration.model'; import { MallIntegrationBackgroundService } from '~backend/mall-integration-background/mall-integration-background.service'; export declare class MallIntegrationController { private readonly mallIntegrationService; private readonly mallIntegrationBackgroundService; constructor(mallIntegrationService: MallIntegrationService, mallIntegrationBackgroundService: MallIntegrationBackgroundService); /** @deprecated */ getMallForms(): any; get(): Promise; createOrUpdate(body: any): Promise; upload({ dates }: MallIntegrationUploadDto, restaurantId: string): Promise; delete(id: string): Promise; }