import { ethers } from 'ethers'; import { FctAddress, FctValue } from '../../../../Fct/generics/FctParams'; export declare const Redeem: { new (args: { chainId: import("../../../../Fct/generics/FctParams").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; receiveToken: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: ethers.providers.JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"COMPOUND_V2", "ACTION", "redeem", string | undefined, { input: { to: FctAddress; receiveToken: FctAddress; methodParams: { redeemTokens: FctValue; }; }; output: { result: FctValue; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; receiveToken: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };