/** * A stub of a Viem transport. Used in cases where making an RPC call is unwanted, * which is true of most AudiusWalletClient implementations. */ export declare const localTransport: () => { request: ({ method, params }: { method: string; params?: object | unknown[] | undefined; }) => Promise; };