import { type Tx, TxType } from "@carrot-kpi/react"; import type { TFunction } from "i18next"; import { type SupportedChain } from "@carrot-kpi/sdk"; import { type PublicClient, type Transport } from "viem"; import type { FC } from "react"; export declare const serializeTransaction: (tx: Tx) => string; export declare const deserializeTransaction: (serialized: string) => Tx; export type TxDetails = { icon?: FC; title: string; summary: string; }; export declare const getTransactionDetails: (t: TFunction, publicClient: PublicClient, tx: Tx) => TxDetails | Promise; //# sourceMappingURL=transactions.d.ts.map