import { FctString, FctValue } from '../../../Fct/generics'; export declare const Validate: { new (args: { chainId: import("../../../Fct/generics").ChainId; initParams?: Partial<{ nodeId: string | import("../corelibTypes").Variable | undefined; methodParams: unknown; }> | undefined; walletAddress?: string | undefined; vaultAddress?: string | undefined; provider?: import("@ethersproject/providers").JsonRpcProvider | undefined; }): import("../../../Fct/createPlugin").NewPluginType<"FUNCTIONS", "VALIDATION", "validate", "validate", { input: { nodeId: FctString; methodParams: { id: FctString; value1: FctValue; operator: FctString; value2: FctValue; }; }; output: { result: FctValue; }; }, Partial<{ nodeId: string | import("../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };