import Long from "long"; import { Coin } from "../../../cosmos/base/v1beta1/coin"; import * as _m0 from "protobufjs/minimal"; export declare const protobufPackage = "akash.deployment.v1beta2"; /** * DepositDeploymentAuthorization allows the grantee to deposit up to spend_limit coins from * the granter's account for a deployment. */ export interface DepositDeploymentAuthorization { $type: "akash.deployment.v1beta2.DepositDeploymentAuthorization"; /** * SpendLimit is the amount the grantee is authorized to spend from the granter's account for * the purpose of deployment. */ spendLimit: Coin | undefined; } export declare const DepositDeploymentAuthorization: { $type: "akash.deployment.v1beta2.DepositDeploymentAuthorization"; encode(message: DepositDeploymentAuthorization, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DepositDeploymentAuthorization; fromJSON(object: any): DepositDeploymentAuthorization; toJSON(message: DepositDeploymentAuthorization): unknown; fromPartial, I>>(object: I): DepositDeploymentAuthorization; }; 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 {};