import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.airflow.v1"; export declare enum Health { /** HEALTH_UNKNOWN - Cluster is in unknown state (we have no data). */ HEALTH_UNKNOWN = 0, /** ALIVE - Cluster is alive and well. */ ALIVE = 1, /** DEAD - Cluster is inoperable (it cannot perform any of its essential functions). */ DEAD = 2, /** DEGRADED - Cluster is partially alive (it can perform some of its essential functions). */ DEGRADED = 3, UNRECOGNIZED = -1 } export declare function healthFromJSON(object: any): Health; export declare function healthToJSON(object: Health): string; export interface Resources { /** ID of the preset for computational resources available to an instance (CPU, memory etc.). */ resourcePresetId: string; } export declare const Resources: { encode(message: Resources, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Resources; fromJSON(object: any): Resources; toJSON(message: Resources): unknown; fromPartial, never>>(object: I): Resources; }; 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 {};