import { JsonRpcProvider } from '@ethersproject/providers'; import { FctAddress, FctValue } from '../../../../Fct/generics/FctParams'; export declare const Mint: { new (args: { chainId: import("../../../../Fct/generics/FctParams").ChainId; initParams?: Partial<{ to: string | import("../../corelibTypes").Variable | undefined; payToken: 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?: JsonRpcProvider | undefined; }): import("../../../../Fct/createPlugin").NewPluginType<"COMPOUND_V2", "ACTION", "mint", "mint", { input: { to: FctAddress; payToken: FctAddress; value: FctValue; amount: FctValue; methodParams: { mintAmount: FctValue; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; payToken: string | import("../../corelibTypes").Variable | undefined; value: string | import("../../corelibTypes").Variable | undefined; amount: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };