import { Signer } from 'ethers'; import type { JsonRpcProvider } from '@ethersproject/providers'; import { PluginInstance } from './Fct'; export declare const getOutputValues: ({ plugin, provider, execute, walletSigner, withAutoApprovals, }: { plugin: import("./createPlugin").NewPluginType>; provider: { provider: InstanceType; signer: InstanceType; }; withAutoApprovals?: boolean | undefined; execute?: boolean | undefined; walletSigner?: Signer | undefined; }) => Promise | { result?: undefined; } | { result: string | undefined; } | Record<"amountA" | "amountB" | "liquidity", string | import("./plugins/corelibTypes").Variable | { [key: string]: string | import("./plugins/corelibTypes").Variable | undefined; }[] | undefined> | Record<"amountIn" | "amountOut", string | import("./plugins/corelibTypes").Variable | { [key: string]: string | import("./plugins/corelibTypes").Variable | undefined; }[] | undefined> | undefined>;