import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.cic.v1"; export interface Peering { /** * PeeringSubnet. * It's an ip with format ipPrefix/length where address part of ipPrefix is 0. */ peeringSubnet: string; /** * PeerIp. * It's an ip with just an ipAddress format without mask. */ peerIp: string; /** * CloudIp. * It's an ip with just an ipAddress format without mask. */ cloudIp: string; /** * PeerBgpAsn. * PeerAsn excluding rfc5398 (excluding 64496 - 64511 and 65536 - 65551). */ peerBgpAsn: number; /** CloudBgpAsn. */ cloudBgpAsn: number; /** * PeerBgpMd5Key. * Optional. */ peerBgpMd5Key: string; } export declare const Peering: { encode(message: Peering, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Peering; fromJSON(object: any): Peering; toJSON(message: Peering): unknown; fromPartial, never>>(object: I): Peering; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};