/**
 * Represents an error thrown because you tried to send a party chat message, but there is no chat yet, because you are the only person in the party
 */
declare class PartyChatConversationNotFoundError extends Error {
    constructor();
}
export default PartyChatConversationNotFoundError;
