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 { $type: 'ibc.applications.transfer.v2.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; } export declare const FungibleTokenPacketData: { $type: "ibc.applications.transfer.v2.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; fromPartial]: never; }>(object: I): 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 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 {};