import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ibc.applications.transfer.v2"; /** * 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 | undefined): FungibleTokenPacketData; fromJSON(object: any): FungibleTokenPacketData; toJSON(message: FungibleTokenPacketData): unknown; create]: never; }>(base?: I | undefined): FungibleTokenPacketData; fromPartial]: never; }>(object: I_1): FungibleTokenPacketData; }; 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 keyof T]?: 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>]: never; }; export {};