import Long from "long"; import { CPU } from "./cpu"; import { Memory } from "./memory"; import { Storage } from "./storage"; import { GPU } from "./gpu"; import { Endpoint } from "./endpoint"; import * as _m0 from "protobufjs/minimal"; export declare const protobufPackage = "akash.base.v1beta3"; /** * Resources describes all available resources types for deployment/node etc * if field is nil resource is not present in the given data-structure */ export interface Resources { $type: "akash.base.v1beta3.Resources"; id: number; cpu: CPU | undefined; memory: Memory | undefined; storage: Storage[]; gpu: GPU | undefined; endpoints: Endpoint[]; } export declare const Resources: { $type: "akash.base.v1beta3.Resources"; encode(message: Resources, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Resources; fromJSON(object: any): Resources; toJSON(message: Resources): unknown; fromPartial, I>>(object: I): Resources; }; 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 {};