/** * Represents a request to disconnect another user from the chat room. * * @remarks * Sending this request to a chat room requires DISCONNECT_USER capability encoded in chat token. Otherwise, server will * respond with error code 403 ({@link chatErrorCodes}). */ export declare class DisconnectUserRequest { /** @internal */ action: 'DISCONNECT_USER'; /** * Client-generated unique identifier (UUID) that will be used by the SDK to match response or error for given * request. */ requestId: string; /** Identifier of the user to be disconnected. */ userId: string; /** Reason for disconnecting the user. */ reason?: string; /** * Constructs a {@link DisconnectUserRequest } instance. * * @param userId - Identifier of the user to be disconnected * @param reason - Reason for disconnecting the user */ constructor(userId: string, reason?: string); } //# sourceMappingURL=DisconnectUserRequest.d.ts.map