export declare const walletTools: ({ name: string; description: string; inputSchema: { type: "object"; properties: { overwrite?: undefined; revealPrivateKey?: undefined; }; }; } | { name: string; description: string; inputSchema: { type: "object"; properties: { overwrite: { type: string; description: string; }; revealPrivateKey: { type: string; description: string; }; }; }; })[]; export declare function handleWalletTool(name: string, args: Record): Promise<{ address: `0x${string}`; nativeBalanceWei: string; nativeBalanceEth: number; created?: undefined; message?: undefined; privateKey?: undefined; warning?: undefined; } | { created: boolean; address: `0x${string}`; message: string; nativeBalanceWei?: undefined; nativeBalanceEth?: undefined; privateKey?: undefined; warning?: undefined; } | { created: boolean; address: `0x${string}`; privateKey: `0x${string}` | undefined; warning: string | undefined; nativeBalanceWei?: undefined; nativeBalanceEth?: undefined; message?: undefined; }>; //# sourceMappingURL=wallet.d.ts.map