import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.marketplace.licensemanager.v1"; export interface Lock { /** ID of the subscription lock. */ id: string; /** ID of the subscription instance. */ instanceId: string; /** ID of the resource. */ resourceId: string; /** Timestamp of the start of the subscription lock. */ startTime?: Date; /** Timestamp of the end of the subscription lock. */ endTime?: Date; /** Creation timestamp. */ createdAt?: Date; /** Update timestamp. */ updatedAt?: Date; /** Subscription lock state. */ state: Lock_State; /** ID of the subscription template. */ templateId: string; } export declare enum Lock_State { STATE_UNSPECIFIED = 0, /** UNLOCKED - Subscription unlocked. */ UNLOCKED = 1, /** LOCKED - Subscription locked to the resource. */ LOCKED = 2, /** DELETED - Subscription lock deleted. */ DELETED = 3, UNRECOGNIZED = -1 } export declare function lock_StateFromJSON(object: any): Lock_State; export declare function lock_StateToJSON(object: Lock_State): string; export declare const Lock: { encode(message: Lock, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Lock; fromJSON(object: any): Lock; toJSON(message: Lock): unknown; fromPartial, never>>(object: I): Lock; }; 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 {};