import Long from "long"; import { GroupID } from "./groupid"; import { GroupSpec } from "./groupspec"; import * as _m0 from "protobufjs/minimal"; export declare const protobufPackage = "akash.deployment.v1beta2"; /** Group stores group id, state and specifications of group */ export interface Group { $type: "akash.deployment.v1beta2.Group"; groupId: GroupID | undefined; state: Group_State; groupSpec: GroupSpec | undefined; createdAt: Long; } /** State is an enum which refers to state of group */ export declare enum Group_State { /** invalid - Prefix should start with 0 in enum. So declaring dummy state */ invalid = 0, /** open - GroupOpen denotes state for group open */ open = 1, /** paused - GroupOrdered denotes state for group ordered */ paused = 2, /** insufficient_funds - GroupInsufficientFunds denotes state for group insufficient_funds */ insufficient_funds = 3, /** closed - GroupClosed denotes state for group closed */ closed = 4, UNRECOGNIZED = -1 } export declare function group_StateFromJSON(object: any): Group_State; export declare function group_StateToJSON(object: Group_State): string; export declare const Group: { $type: "akash.deployment.v1beta2.Group"; encode(message: Group, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Group; fromJSON(object: any): Group; toJSON(message: Group): unknown; fromPartial, I>>(object: I): Group; }; 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 {};