import { ClientCapability, ClientType, Location, MLSPublicKeyRecord, PublicClient } from './'; export interface AddedClient extends PublicClient { /** The IP address from which the client was registered */ address?: string; label?: string; location?: Location; model?: string; /** An ISO 8601 Date string */ time: string; type: ClientType.PERMANENT | ClientType.TEMPORARY; mls_public_keys: MLSPublicKeyRecord; last_active?: string; } export interface RegisteredClient extends AddedClient { /** The cookie label */ capabilities: ClientCapability[]; cookie: string; } //# sourceMappingURL=RegisteredClient.d.ts.map