import _m0 from 'protobufjs/minimal'; import { LagInfo } from '../../../../../yandex/cloud/cic/v1/common/lag_info'; export declare const protobufPackage = "yandex.cloud.cic.v1.common"; /** Structure for create and update requests that describes LAG allocation settings */ export interface LagAllocationSettingsRequest { /** * Size of LAG. * Must be from 1 to 10 inclusively. */ lagSize: number | undefined; } /** Structure that describes LAG allocation settings */ export interface LagAllocationSettings { /** LagInfo */ lagInfo?: LagInfo; } export declare const LagAllocationSettingsRequest: { encode(message: LagAllocationSettingsRequest, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): LagAllocationSettingsRequest; fromJSON(object: any): LagAllocationSettingsRequest; toJSON(message: LagAllocationSettingsRequest): unknown; fromPartial, never>>(object: I): LagAllocationSettingsRequest; }; export declare const LagAllocationSettings: { encode(message: LagAllocationSettings, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): LagAllocationSettings; fromJSON(object: any): LagAllocationSettings; toJSON(message: LagAllocationSettings): unknown; fromPartial, never>) | undefined; } & Record, never>) | undefined; } & Record, never>>(object: I): LagAllocationSettings; }; 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 {};