import { FctAddress, FctString, FctTradingGraphProps, FctValue } from '../../../Fct/generics'; export declare const TradingGraph: { new (args: { chainId: import("../../../Fct/generics").ChainId; initParams?: Partial<{ label: string | import("../corelibTypes").Variable | undefined; fromToken: string | import("../corelibTypes").Variable | undefined; toToken: string | import("../corelibTypes").Variable | undefined; protocol: string | import("../corelibTypes").Variable | undefined; minPrice: string | import("../corelibTypes").Variable | undefined; minDescription: string | import("../corelibTypes").Variable | undefined; maxPrice: string | import("../corelibTypes").Variable | undefined; maxDescription: string | import("../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../Fct/createPlugin").NewPluginType<"FUNCTIONS", "GETTER", "tradingGraph", "tradingGraph", { input: { label: FctString; fromToken: FctAddress; toToken: FctAddress; protocol: FctString; minPrice: FctValue; minDescription: FctString; maxPrice: FctValue; maxDescription: FctString; methodParams: {}; }; output: { component: FctTradingGraphProps; }; }, Partial<{ label: string | import("../corelibTypes").Variable | undefined; fromToken: string | import("../corelibTypes").Variable | undefined; toToken: string | import("../corelibTypes").Variable | undefined; protocol: string | import("../corelibTypes").Variable | undefined; minPrice: string | import("../corelibTypes").Variable | undefined; minDescription: string | import("../corelibTypes").Variable | undefined; maxPrice: string | import("../corelibTypes").Variable | undefined; maxDescription: string | import("../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };