import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.mdb.mysql.v1alpha"; /** * A MySQL backup. For more information, see * the [documentation](/docs/managed-mysql/concepts/backup). */ export interface Backup { /** ID of the backup. */ id: string; /** ID of the folder that the backup belongs to. */ folderId: string; /** Comment for API reference generated automatically. */ createdAt?: Date; /** ID of the MySQL cluster that the backup was created for. */ sourceClusterId: string; /** Time when the backup operation was started. */ startedAt?: Date; } 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>>(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 {};