import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ibc.applications.transfer.v1"; /** * FungibleTokenPacketData defines a struct for the packet payload * See FungibleTokenPacketData spec: * https://github.com/cosmos/ibc/tree/master/spec/app/ics-020-fungible-token-transfer#data-structures */ export interface FungibleTokenPacketData { /** the token denomination to be transferred */ denom: string; /** the token amount to be transferred */ amount: string; /** the sender address */ sender: string; /** the recipient address on the destination chain */ receiver: string; /** optional memo */ memo: string; } export declare const FungibleTokenPacketData: { encode(message: FungibleTokenPacketData, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): FungibleTokenPacketData; fromJSON(object: any): FungibleTokenPacketData; toJSON(message: FungibleTokenPacketData): unknown; create(base?: DeepPartial): FungibleTokenPacketData; fromPartial(object: DeepPartial): FungibleTokenPacketData; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};