import { AminoMsg } from '@cosmjs/amino'; import { AminoConverter } from '@cosmjs/stargate'; export interface AminoMsgCreate extends AminoMsg { type: '/bitsong.merkledrop.v1beta1.MsgCreate'; value: { owner: string; merkle_root: string; start_height: string; end_height: string; coin: { denom: string; amount: string; }; }; } export interface AminoMsgClaim extends AminoMsg { type: '/bitsong.merkledrop.v1beta1.MsgClaim'; value: { sender: string; merkledrop_id: string; index: string; amount: string; proofs: string[]; }; } export declare const aminoConverter: { [key: string]: AminoConverter; };