import Long from "long"; import * as _m0 from "protobufjs/minimal"; export declare const protobufPackage = "akash.base.v1beta2"; /** Endpoint describes a publicly accessible IP service */ export interface Endpoint { $type: "akash.base.v1beta2.Endpoint"; kind: Endpoint_Kind; sequenceNumber: number; } /** This describes how the endpoint is implemented when the lease is deployed */ export declare enum Endpoint_Kind { /** SHARED_HTTP - Describes an endpoint that becomes a Kubernetes Ingress */ SHARED_HTTP = 0, /** RANDOM_PORT - Describes an endpoint that becomes a Kubernetes NodePort */ RANDOM_PORT = 1, /** LEASED_IP - Describes an endpoint that becomes a leased IP */ LEASED_IP = 2, UNRECOGNIZED = -1 } export declare function endpoint_KindFromJSON(object: any): Endpoint_Kind; export declare function endpoint_KindToJSON(object: Endpoint_Kind): string; export declare const Endpoint: { $type: "akash.base.v1beta2.Endpoint"; encode(message: Endpoint, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Endpoint; fromJSON(object: any): Endpoint; toJSON(message: Endpoint): unknown; fromPartial, I>>(object: I): Endpoint; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in Exclude]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record | "$type">, never>; export {};