import { MenuService } from '~backend/menu/menu.service'; import { RestaurantService } from '~backend/business/restaurant/restaurant.service'; import { BusinessService } from '~backend/business/business.service'; import { MenuV3Service } from '../menu-v3.service'; import { CouchdbStaticService } from '~backend/couchdb/couchdb-static/couchdb-static.service'; export declare class MigrationFromV2Service { private readonly menuV3Service; private readonly menuV2Service; private readonly restaurantService; private readonly businessService; private readonly couchdbStaticService; constructor(menuV3Service: MenuV3Service, menuV2Service: MenuService, restaurantService: RestaurantService, businessService: BusinessService, couchdbStaticService: CouchdbStaticService); migrate(businessId: string): Promise; private getRestaurantMenuService; private loadMigration; private saveMigration; private transformMigration; }