import type { ReadonlyJSONValue } from '../../../../shared/src/json.ts'; import type { Row } from '../../../../zero-protocol/src/data.ts'; import { ClientGroup } from './client-group.ts'; import type { ExtendedInspectorDelegate } from './lazy-inspector.ts'; import type { Query } from './query.ts'; export declare class Client { #private; readonly id: string; readonly clientGroup: ClientGroup; constructor(delegate: ExtendedInspectorDelegate, clientID: string, clientGroupID: Promise | string); queries(): Promise; map(): Promise>; rows(tableName: string): Promise; } //# sourceMappingURL=client.d.ts.map