import type { WalletInstance } from '@xyo-network/sdk'; /** * Parameters for {@link useWallets}. * @public */ export interface WalletsHookParams { paths: string[]; wallet?: WalletInstance | null; } /** * Derives wallet instances for each HD path from a wallet or wallet context. * @param params - Wallet source and derivation paths. * @returns Derived wallets (or null when context is empty) and any error. * @public */ export declare const useWallets: ({ wallet, paths }: WalletsHookParams) => [WalletInstance[] | null | undefined, Error | undefined]; //# sourceMappingURL=useWallets.d.ts.map