import { NeoFsV2Refs } from '../refs/types_pb'; export declare namespace NeoFsV2Subnet { interface SubnetInfo { Id?: NeoFsV2Refs.SubnetID; Owner?: NeoFsV2Refs.OwnerID; } class SubnetInfoImpl implements SubnetInfo { Id?: NeoFsV2Refs.SubnetID; Owner?: NeoFsV2Refs.OwnerID; constructor(data?: Partial); serializeBinary(): Uint8Array; static deserializeBinary(data: Uint8Array): SubnetInfoImpl; toObject(): SubnetInfoData; } class SubnetInfo extends SubnetInfoImpl { } type SubnetInfoData = Omit; }