import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "yandex.cloud.mdb.elasticsearch.v1"; export interface Extension { /** Name of the extension. */ name: string; /** Unique ID of the extension. */ id: string; /** ID of the Elasticsearch cluster the extension belongs to. */ clusterId: string; /** Version of the extension. */ version: number; /** The flag shows whether the extension is active. */ active: boolean; } export interface ExtensionSpec { /** Name of the extension. */ name: string; /** URI of the zip archive to create the new extension from. Currently only supports links that are stored in Object Storage. */ uri: string; /** The flag shows whether to create the extension in disabled state. */ disabled: boolean; } export declare const Extension: { encode(message: Extension, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Extension; fromJSON(object: any): Extension; toJSON(message: Extension): unknown; fromPartial, never>>(object: I): Extension; }; export declare const ExtensionSpec: { encode(message: ExtensionSpec, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ExtensionSpec; fromJSON(object: any): ExtensionSpec; toJSON(message: ExtensionSpec): unknown; fromPartial, never>>(object: I): ExtensionSpec; }; 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 {};