import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.cdn.v1"; /** Message representing the details of a shielding server. */ export interface ShieldingDetails { /** Unique identifier for the geographical location of the shielding server. */ locationId: number; /** Name of the data center where the shielding server is located. */ dataCenter: string; /** Country where the shielding server's data center is located, useful for understanding geographical distribution. */ country: string; /** City where the shielding server's data center is situated, providing a more precise location than just the country. */ city: string; } export declare const ShieldingDetails: { encode(message: ShieldingDetails, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ShieldingDetails; fromJSON(object: any): ShieldingDetails; toJSON(message: ShieldingDetails): unknown; fromPartial, never>>(object: I): ShieldingDetails; }; 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 {};