import type { Chain, Client, Transport } from 'viem'; import type { AudiusAccount } from '../types'; export type GetSharedSecretParameters = { account?: TAccount; publicKey: string | Uint8Array; }; export declare function getSharedSecret(client: Client, { account: account_, publicKey }: GetSharedSecretParameters): Promise;