import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.baremetal.v1alpha"; /** An Image resource. */ export interface Image { /** ID of the image. */ id: string; /** ID of the folder that the image belongs to. */ folderId: string; /** * Name of the image. * The name is unique within the folder. */ name: string; /** Description of the image. */ description: string; /** MD5 checksum of the image. */ checksum: string; /** Status of the image. */ status: Image_Status; /** Creation timestamp. */ createdAt?: Date; /** Resource labels as `key:value` pairs. */ labels: { [key: string]: string; }; } /** Image status. */ export declare enum Image_Status { /** STATUS_UNSPECIFIED - Unspecified image status. */ STATUS_UNSPECIFIED = 0, /** CREATING - Image is being created. */ CREATING = 1, /** READY - Image is ready to use. */ READY = 2, /** ERROR - Image encountered an error. */ ERROR = 3, /** DELETING - Image is being deleted. */ DELETING = 4, /** UPDATING - Image is being updated. */ UPDATING = 5, UNRECOGNIZED = -1 } export declare function image_StatusFromJSON(object: any): Image_Status; export declare function image_StatusToJSON(object: Image_Status): string; export interface Image_LabelsEntry { key: string; value: string; } export declare const Image: { encode(message: Image, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Image; fromJSON(object: any): Image; toJSON(message: Image): unknown; fromPartial, never>) | undefined; } & Record, never>>(object: I): Image; }; export declare const Image_LabelsEntry: { encode(message: Image_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Image_LabelsEntry; fromJSON(object: any): Image_LabelsEntry; toJSON(message: Image_LabelsEntry): unknown; fromPartial, never>>(object: I): Image_LabelsEntry; }; 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 {};