import { Any } from '../../../google/protobuf/any'; import Long from 'long'; import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "cosmos.feegrant.v1beta1"; /** Since: cosmos-sdk 0.43 */ /** * MsgGrantAllowance adds permission for Grantee to spend up to Allowance * of fees from the account of Granter. */ export interface MsgGrantAllowance { $type: 'cosmos.feegrant.v1beta1.MsgGrantAllowance'; /** granter is the address of the user granting an allowance of their funds. */ granter: string; /** grantee is the address of the user being granted an allowance of another user's funds. */ grantee: string; /** allowance can be any of basic and filtered fee allowance. */ allowance?: Any; } /** MsgGrantAllowanceResponse defines the Msg/GrantAllowanceResponse response type. */ export interface MsgGrantAllowanceResponse { $type: 'cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse'; } /** MsgRevokeAllowance removes any existing Allowance from Granter to Grantee. */ export interface MsgRevokeAllowance { $type: 'cosmos.feegrant.v1beta1.MsgRevokeAllowance'; /** granter is the address of the user granting an allowance of their funds. */ granter: string; /** grantee is the address of the user being granted an allowance of another user's funds. */ grantee: string; } /** MsgRevokeAllowanceResponse defines the Msg/RevokeAllowanceResponse response type. */ export interface MsgRevokeAllowanceResponse { $type: 'cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse'; } export declare const MsgGrantAllowance: { $type: "cosmos.feegrant.v1beta1.MsgGrantAllowance"; encode(message: MsgGrantAllowance, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MsgGrantAllowance; fromJSON(object: any): MsgGrantAllowance; toJSON(message: MsgGrantAllowance): unknown; fromPartial]: never; }) | undefined; } & { [K_1 in Exclude]: never; }>(object: I): MsgGrantAllowance; }; export declare const MsgGrantAllowanceResponse: { $type: "cosmos.feegrant.v1beta1.MsgGrantAllowanceResponse"; encode(_: MsgGrantAllowanceResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MsgGrantAllowanceResponse; fromJSON(_: any): MsgGrantAllowanceResponse; toJSON(_: MsgGrantAllowanceResponse): unknown; fromPartial]: never; }>(_: I): MsgGrantAllowanceResponse; }; export declare const MsgRevokeAllowance: { $type: "cosmos.feegrant.v1beta1.MsgRevokeAllowance"; encode(message: MsgRevokeAllowance, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MsgRevokeAllowance; fromJSON(object: any): MsgRevokeAllowance; toJSON(message: MsgRevokeAllowance): unknown; fromPartial]: never; }>(object: I): MsgRevokeAllowance; }; export declare const MsgRevokeAllowanceResponse: { $type: "cosmos.feegrant.v1beta1.MsgRevokeAllowanceResponse"; encode(_: MsgRevokeAllowanceResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): MsgRevokeAllowanceResponse; fromJSON(_: any): MsgRevokeAllowanceResponse; toJSON(_: MsgRevokeAllowanceResponse): unknown; fromPartial]: never; }>(_: I): MsgRevokeAllowanceResponse; }; /** Msg defines the feegrant msg service. */ export interface Msg { /** * GrantAllowance grants fee allowance to the grantee on the granter's * account with the provided expiration time. */ GrantAllowance(request: MsgGrantAllowance): Promise; /** * RevokeAllowance revokes any fee allowance of granter's account that * has been granted to the grantee. */ RevokeAllowance(request: MsgRevokeAllowance): Promise; } export declare class MsgClientImpl implements Msg { private readonly rpc; constructor(rpc: Rpc); GrantAllowance(request: MsgGrantAllowance): Promise; RevokeAllowance(request: MsgRevokeAllowance): Promise; } interface Rpc { request(service: string, method: string, data: Uint8Array): Promise; } declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export declare 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; declare type KeysOfUnion = T extends T ? keyof T : never; export declare type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude | '$type'>]: never; }; export {};