import { FctAddress, FctValue } from '../../../../Fct/generics/FctParams'; export declare const SupplyTo: { new (args: { chainId: import("../../../../Fct/generics/FctParams").ChainId; initParams?: Partial<{ to: 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_V3", "ACTION", "supplyTo", string | undefined, { input: { to: FctAddress; methodParams: { destination: FctAddress; asset: FctAddress; amount: FctValue; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };