/**
 * @author Javen
 * @copyright javendev@126.com
 * @description 门店审核通知事件
 */
import { EventInMsg } from './EventInMsg';
export declare class InPoiCheckNotifyEvent extends EventInMsg {
    static EVENT: string;
    private uniqId;
    private poiId;
    private result;
    private msg;
    constructor(toUserName: string, fromUserName: string, createTime: number, event: string);
    get getUniqId(): string;
    set setUniqId(uniqId: string);
    get getPoiId(): string;
    set setPoiId(poiId: string);
    get getResult(): string;
    set setResult(result: string);
    get getMsg(): string;
    set setMsg(msg: string);
}
