import type { RhinestoneAccount } from '../index'; import type { LazyCallInput, ModuleInput } from '../types'; /** * Install a custom module * @param module Module to install * @returns Calls to install the module */ declare function installModule(module: ModuleInput): LazyCallInput; /** * Uninstall a custom module * @param module Module to uninstall * @returns Calls to uninstall the module */ declare function uninstallModule(module: ModuleInput): LazyCallInput; declare function deploy(account: RhinestoneAccount): LazyCallInput; export { installModule, uninstallModule, deploy }; //# sourceMappingURL=index.d.ts.map