import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.mdb.elasticsearch.v1"; export interface Backup { /** Required. ID of the backup. */ id: string; /** ID of the folder that the backup belongs to. */ folderId: string; /** ID of the associated Elasticsearch cluster. */ sourceClusterId: string; /** The time when the backup operation was started. */ startedAt?: Date; /** The time when the backup was created (i.e. when the backup operation completed). */ createdAt?: Date; /** Indices names. (max 100) */ indices: string[]; /** Elasticsearch version used to create the snapshot */ elasticsearchVersion: string; /** Total size of all indices in backup. in bytes */ sizeBytes: number; /** Total count of indices in backup */ indicesTotal: number; } export declare const Backup: { encode(message: Backup, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Backup; fromJSON(object: any): Backup; toJSON(message: Backup): unknown; fromPartial, never>) | undefined; elasticsearchVersion?: string | undefined; sizeBytes?: number | undefined; indicesTotal?: number | undefined; } & Record, never>>(object: I): Backup; }; 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 {};