import _m0 from 'protobufjs/minimal'; import { ExtensionType } from '../../../../../yandex/cloud/mdb/opensearch/v1/extension/extension_type'; export declare const protobufPackage = "yandex.cloud.mdb.opensearch.v1"; export interface Extension { /** Name of the extension. */ name: string; /** Extension unique ID */ id: string; /** ID of the OpenSearch cluster the extension belongs to. */ clusterId: string; /** Extension version */ version: number; /** Flag is extension active now */ active: boolean; /** Extension type */ type: ExtensionType; } export interface ExtensionSpec { /** Name of the extension. */ name: string; /** * URI of the extension file * Currently only supports links that are stored in Yandex Object Storage. */ uri: string; disabled: boolean; /** Extension type */ type: ExtensionType; } 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 {};