import { Database } from '@azure/cosmos'; import { Scope } from '@nestjs/common'; export interface PartitionKeyValues { PartitionKey: string; } export declare function createAzureCosmosDbProviders(connectionName?: string, models?: { dto: any; collection?: string; }[]): { provide: string; useFactory: (database: Database) => Promise; inject: string[]; scope: Scope; }[];