import { ConfigService } from '@nestjs/config'; import { Connection } from '~core/db/dbConnection'; import { CouchdbStaticService } from './couchdb-static/couchdb-static.service'; export declare class CouchdbService { private readonly configService; private readonly couchdbStaticService; private readonly logger; dbName: string; publishDb: string[]; warehouseId: string; restaurantId: string; businessId: string; constructor(configService: ConfigService, couchdbStaticService: CouchdbStaticService); get baseUrl(): any; setWarehouseDB(id: any): void; setRestaurantDB(id: any): void; setBusinessDB(id: any): void; getConnection(): Connection; publishChange(types?: string[], filterDbs?: string[]): Promise; }