import type { Chain, Client, Hash, Transport } from "viem"; import { type SendUserOperationParameters, type SmartAccount } from "viem/account-abstraction"; import type { KernelValidator, KernelValidatorHook } from "../../types/kernel.js"; export type UninstallPluginParameters = Partial> & { plugin: KernelValidator; hook?: KernelValidatorHook; }; export declare function uninstallPlugin(client: Client, args: UninstallPluginParameters): Promise; //# sourceMappingURL=uninstallPlugin.d.ts.map