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