import Long from 'long'; import _m0 from 'protobufjs/minimal'; export declare const protobufPackage = "ibc.applications.transfer.v1"; /** * DenomTrace contains the base denomination for ICS20 fungible tokens and the * source tracing information path. */ export interface DenomTrace { $type: 'ibc.applications.transfer.v1.DenomTrace'; /** * path defines the chain of port/channel identifiers used for tracing the * source of the fungible token. */ path: string; /** base denomination of the relayed fungible token. */ baseDenom: string; } /** * Params defines the set of IBC transfer parameters. * NOTE: To prevent a single token from being transferred, set the * TransfersEnabled parameter to true and then set the bank module's SendEnabled * parameter for the denomination to false. */ export interface Params { $type: 'ibc.applications.transfer.v1.Params'; /** * send_enabled enables or disables all cross-chain token transfers from this * chain. */ sendEnabled: boolean; /** * receive_enabled enables or disables all cross-chain token transfers to this * chain. */ receiveEnabled: boolean; } export declare const DenomTrace: { $type: "ibc.applications.transfer.v1.DenomTrace"; encode(message: DenomTrace, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): DenomTrace; fromJSON(object: any): DenomTrace; toJSON(message: DenomTrace): unknown; fromPartial]: never; }>(object: I): DenomTrace; }; export declare const Params: { $type: "ibc.applications.transfer.v1.Params"; encode(message: Params, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial]: never; }>(object: I): Params; }; 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 {};