/**
 * Specifies the connection mode used to communicate with the Azure CosmosDB service.
 * See {@link RVAzureCosmosDBDataSource.connectionMode}.
 */
export declare enum RVAzureCosmosDBConnectionMode {
    /** Uses direct TCP connections to CosmosDB replicas. Offers lower latency and higher throughput. */
    Direct = "Direct",
    /** Uses HTTPS connections through the CosmosDB gateway. Compatible with environments that restrict direct TCP traffic. */
    Gateway = "Gateway"
}
