/** * Azure Cosmos DB Gremlin adapter — Gremlin API over WebSocket (Cosmos endpoint format). */ import { NeptuneAdapter } from './neptune.adapter'; import { GraphType } from '../types/enums'; import { IAdapterConnectionOptions } from './base.adapter'; import { IGraphConnectionResult, IGraphTestConnectionResult } from '../types/connection.interface'; export declare class CosmosGremlinAdapter extends NeptuneAdapter { protected graphType: GraphType; connect(options: IAdapterConnectionOptions): Promise; testConnection(options: IAdapterConnectionOptions): Promise; }