import type { Hedgehog } from '@audius/hedgehog'; import type { AudiusWalletClient } from './types'; export declare class HedgehogWalletNotFoundError extends Error { constructor(); } /** * Creates a Viem client that uses a local Hedgehog instance to do all the wallet methods. */ export declare function createHedgehogWalletClient(hedgehog: Hedgehog): AudiusWalletClient;