import Long from "long"; import { PlacementRequirements } from "../../base/v1beta2/attribute"; import { Resource } from "./resource"; import * as _m0 from "protobufjs/minimal"; export declare const protobufPackage = "akash.deployment.v1beta2"; /** GroupSpec stores group specifications */ export interface GroupSpec { $type: "akash.deployment.v1beta2.GroupSpec"; name: string; requirements: PlacementRequirements | undefined; resources: Resource[]; } export declare const GroupSpec: { $type: "akash.deployment.v1beta2.GroupSpec"; encode(message: GroupSpec, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GroupSpec; fromJSON(object: any): GroupSpec; toJSON(message: GroupSpec): unknown; fromPartial, I>>(object: I): GroupSpec; }; 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 {};