import { type Hex } from 'viem'; import type { AudiusAccount } from './types'; /** * Creates a Viem account that has sign and getSharedSecret capability from a private key. */ export declare function privateKeyToAudiusAccount(privateKey: Hex): AudiusAccount;