import { Coin, CoinAmino, CoinSDKType } from "../../base/v1beta1/coin"; import { BinaryReader, BinaryWriter } from "../../../binary"; /** * SendAuthorization allows the grantee to spend up to spend_limit coins from * the granter's account. * * Since: cosmos-sdk 0.43 */ export interface SendAuthorization { spendLimit: Coin[]; } export interface SendAuthorizationProtoMsg { typeUrl: "/cosmos.bank.v1beta1.SendAuthorization"; value: Uint8Array; } /** * SendAuthorization allows the grantee to spend up to spend_limit coins from * the granter's account. * * Since: cosmos-sdk 0.43 */ export interface SendAuthorizationAmino { spend_limit?: CoinAmino[]; } export interface SendAuthorizationAminoMsg { type: "cosmos-sdk/SendAuthorization"; value: SendAuthorizationAmino; } /** * SendAuthorization allows the grantee to spend up to spend_limit coins from * the granter's account. * * Since: cosmos-sdk 0.43 */ export interface SendAuthorizationSDKType { spend_limit: CoinSDKType[]; } export declare const SendAuthorization: { typeUrl: string; aminoType: string; encode(message: SendAuthorization, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): SendAuthorization; fromPartial(object: Partial): SendAuthorization; fromAmino(object: SendAuthorizationAmino): SendAuthorization; toAmino(message: SendAuthorization): SendAuthorizationAmino; fromAminoMsg(object: SendAuthorizationAminoMsg): SendAuthorization; toAminoMsg(message: SendAuthorization): SendAuthorizationAminoMsg; fromProtoMsg(message: SendAuthorizationProtoMsg): SendAuthorization; toProto(message: SendAuthorization): Uint8Array; toProtoMsg(message: SendAuthorization): SendAuthorizationProtoMsg; };