import { Peer, Content } from '../entities'; declare class MessageRejectedError extends Error { readonly name = "MessageRejected"; readonly peer: Peer; readonly content: Content; readonly hookId: string; readonly reason: string | null; constructor(peer: Peer, content: Content, hookId: string, reason: string | null); } export default MessageRejectedError;