import { Plugin } from './plugins.js'; import { Tool } from './tool.js'; import { WalletClient } from './wallets/core.js'; import './wallets/chain.js'; import 'zod'; type GetToolsParams = { wallet: TWalletClient; plugins?: (Plugin | Plugin)[]; options?: { wordForTool?: string; }; }; declare function getTools({ wallet, plugins, options, }: GetToolsParams): Promise; export { type GetToolsParams, getTools };