import { ManagedObj } from './managedObj';
export declare class SubAddrId extends ManagedObj {
    constructor(obj: any);
    static generate(account: number, address: number): SubAddrId;
    value(): any;
    serialize(): string;
    static deserialize(this: new (obj: any) => SubAddrId, hex: string): SubAddrId;
}
