import { Coin, type CoinSDKType } from '../../../cosmos/base/v1beta1/coin.js'; import { BinaryReader, BinaryWriter } from '../../../binary.js'; import { type JsonSafe } from '../../../json-safe.js'; export interface Route { /** ID of the Pool. */ poolId: bigint; /** Destination denom after the Swap in the Pool. */ denomTo: string; } export interface RouteProtoMsg { typeUrl: '/noble.swap.v1.Route'; value: Uint8Array; } export interface RouteSDKType { pool_id: bigint; denom_to: string; } export interface Swap { /** ID of the pool used in the swap. */ poolId: bigint; /** The input coin for the swap. */ in: Coin; /** The output coin after the swap. */ out: Coin; /** Any fees incurred during the swap. */ fees: Coin[]; } export interface SwapProtoMsg { typeUrl: '/noble.swap.v1.Swap'; value: Uint8Array; } export interface SwapSDKType { pool_id: bigint; in: CoinSDKType; out: CoinSDKType; fees: CoinSDKType[]; } export declare const Route: { typeUrl: "/noble.swap.v1.Route"; encode(message: Route, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Route; fromJSON(object: any): Route; toJSON(message: Route): JsonSafe; fromPartial(object: Partial): Route; fromProtoMsg(message: RouteProtoMsg): Route; toProto(message: Route): Uint8Array; toProtoMsg(message: Route): RouteProtoMsg; }; export declare const Swap: { typeUrl: "/noble.swap.v1.Swap"; encode(message: Swap, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Swap; fromJSON(object: any): Swap; toJSON(message: Swap): JsonSafe; fromPartial(object: Partial): Swap; fromProtoMsg(message: SwapProtoMsg): Swap; toProto(message: Swap): Uint8Array; toProtoMsg(message: Swap): SwapProtoMsg; }; //# sourceMappingURL=swap.d.ts.map