import { FctAddress, FctTimestamp, FctValue } from '../../../../Fct/generics/FctParams'; export declare const CreateLock: { 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<"CURVE", "ACTION", "create_lock", "createCurveTokenLock", { input: { to: FctAddress; methodParams: { value: FctValue; unlock_time: FctTimestamp; }; }; output: {}; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };