import { BuildSwapTxInput } from '@paraswap/sdk'; import * as common from '@protocolink/common'; import * as core from '@protocolink/core'; export type SwapTokenLogicTokenList = common.Token[]; export type SwapTokenLogicParams = core.TokenToTokenParams<{ slippage?: number; excludeDEXS?: string[]; }>; export type SwapTokenLogicFields = core.TokenToTokenExactInFields & { slippage?: number; excludeDEXS?: string[]; }>; export type SwapTokenLogicOptions = Pick; export declare class SwapTokenLogic extends core.Logic implements core.LogicTokenListInterface, core.LogicOracleInterface, core.LogicBuilderInterface { static id: string; static protocolId: string; static readonly supportedChainIds: number[]; get sdk(): import("@paraswap/sdk").SimpleFetchSDK; getTokenList(): Promise; quote(params: SwapTokenLogicParams): Promise<{ input: common.TokenAmount; output: common.TokenAmount; slippage: number | undefined; excludeDEXS: string[] | undefined; }>; build(fields: SwapTokenLogicFields, options: SwapTokenLogicOptions): Promise<{ to: string; data: string; inputs: core.DataType.InputStruct[]; wrapMode: number; approveTo: string; callback: string; }>; }