/**
 * @author Javen
 * @copyright javendev@126.com
 * @description wifi连网后下发消息
 */
import { EventInMsg } from './EventInMsg';
export declare class InWifiEvent extends EventInMsg {
    static EVENT: string;
    private connectTime;
    private expireTime;
    private vendorId;
    private shopId;
    private deviceNo;
    get getConnectTime(): string;
    set setConnectTime(connectTime: string);
    get getExpireTime(): string;
    set setExpireTime(expireTime: string);
    get getVendorId(): string;
    set setVendorId(vendorId: string);
    get getShopId(): string;
    set setShopId(shopId: string);
    get getDeviceNo(): string;
    set setDeviceNo(deviceNo: string);
}
