import { FctAddress, FctValue } from '../../../../Fct/generics/FctParams'; export declare const RepayBorrow: { new (args: { chainId: import("../../../../Fct/generics/FctParams").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; amount: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"COMPOUND_V2", "ACTION", "repayBorrow", "repayBorrow", { input: { to: FctAddress; value: FctValue; amount: FctValue; methodParams: { repayAmount: FctValue; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; amount: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };