import Long from "long"; import { ResourceValue } from "./resourcevalue"; import { Attribute } from "./attribute"; import * as _m0 from "protobufjs/minimal"; export declare const protobufPackage = "akash.base.v1beta3"; /** CPU stores resource units and cpu config attributes */ export interface CPU { $type: "akash.base.v1beta3.CPU"; units: ResourceValue | undefined; attributes: Attribute[]; } export declare const CPU: { $type: "akash.base.v1beta3.CPU"; encode(message: CPU, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): CPU; fromJSON(object: any): CPU; toJSON(message: CPU): unknown; fromPartial, I>>(object: I): CPU; }; 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 {};