import { FctAddress, FctBoolean, FctBytes32 } from '../../../../Fct/generics'; export declare const ValidateSignature: { new (args: { chainId: import("../../../../Fct/generics").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<"SingersValidator", "GETTER", "validateSignature", string | undefined, { input: { to: FctAddress; methodParams: { messageHash: FctBytes32; valuesHash: FctBytes32; signer: FctAddress; r: FctBytes32; sv: FctBytes32; }; }; output: { result: FctBoolean; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };