declare module '@concordant/c-client' { export var client; export namespace client { export namespace utils { type ConsistencyLevel = "None" | "RC" | "Snapshot" | "Strong"; } interface Collection { id: string; } interface ClientUId { } interface Session { clientUId: ClientUId; dbName: string; serviceUrl: string; webSocketPath: string; webSocketPort: number; } interface Transaction { } } }