import { FctAddress, FctBoolean, FctBytes4 } from '../../../../Fct/generics'; export declare const SupportsInterface: { 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<"SECURE_STORAGE", "GETTER", "supportsInterface", string | undefined, { input: { to: FctAddress; methodParams: { interfaceId: FctBytes4; }; }; output: { isSupports: FctBoolean; }; }, Partial<{ to: string | import("../../corelibTypes").Variable | undefined; methodParams: unknown; }>>; };