import { AminoMsg } from "@cosmjs/amino"; import { AminoConverter } from "@shareledgerjs/amino"; import { Any } from "@shareledgerjs/types/google/protobuf/any"; export interface AminoMsgGrantAllowance extends AminoMsg { readonly type: "cosmos-sdk/MsgGrantAllowance"; readonly value: { readonly grantee: string; readonly granter: string; readonly allowance?: Any; }; } export declare function isAminoMsgGrantAllowance(msg: AminoMsg): msg is AminoMsgGrantAllowance; export interface AminoMsgRevokeAllowance extends AminoMsg { readonly type: "cosmos-sdk/MsgRevokeAllowance"; readonly value: { readonly grantee: string; readonly granter: string; }; } export declare function isAminoMsgRevokeAllowance(msg: AminoMsg): msg is AminoMsgRevokeAllowance; export declare function createFeegrantAminoConverters(): Record;