/**
 *
 "conversation":{
            "conversationType": 0,
            "target": "UZUWUWuu",
            "line": 0,
        }
 */
export default class Conversation {
    constructor(type: any, target: any, line?: number);
    type: number;
    conversationType: number;
    target: string;
    line: number;
    equal(conversation: any): boolean;
}
