import { NoticeCodec } from '../../typedef/notice/NoticeCodec';
import { DeviceNotice } from '../../typedef/notice/device/DeviceNotice';
export declare class DeviceNoticeCodec extends NoticeCodec<DeviceNotice, any> {
    mainType(): string;
    encode(x: DeviceNotice): any;
    decode(subType: string, o: any): DeviceNotice;
    decodeObject(o: any): DeviceNotice;
}
