import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.clouddesktop.v1.api"; /** A desktop image resource. */ export interface DesktopImage { /** ID of the image. */ id: string; /** ID of the folder that the image belongs to. */ folderId: string; /** Creation timestamp in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format. */ createdAt?: Date; /** Status of the image. */ status: DesktopImage_Status; /** Name of the image. */ name: string; /** Description of the image. */ labels: { [key: string]: string; }; /** Size of the image, specified in bytes. */ storageSize: number; /** Minimum disk size in bytes required to use the image. */ minDiskSize: number; } export declare enum DesktopImage_Status { STATUS_UNSPECIFIED = 0, /** CREATING - Image is being created. */ CREATING = 1, /** ACTIVE - Image is ready to use. */ ACTIVE = 2, /** DELETING - Image is being deleted. */ DELETING = 3, UNRECOGNIZED = -1 } export declare function desktopImage_StatusFromJSON(object: any): DesktopImage_Status; export declare function desktopImage_StatusToJSON(object: DesktopImage_Status): string; export interface DesktopImage_LabelsEntry { key: string; value: string; } export declare const DesktopImage: { encode(message: DesktopImage, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DesktopImage; fromJSON(object: any): DesktopImage; toJSON(message: DesktopImage): unknown; fromPartial, never>) | undefined; storageSize?: number | undefined; minDiskSize?: number | undefined; } & Record, never>>(object: I): DesktopImage; }; export declare const DesktopImage_LabelsEntry: { encode(message: DesktopImage_LabelsEntry, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DesktopImage_LabelsEntry; fromJSON(object: any): DesktopImage_LabelsEntry; toJSON(message: DesktopImage_LabelsEntry): unknown; fromPartial, never>>(object: I): DesktopImage_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 {};