import { type CSSProperties } from "react"; import type { TokenDelta } from "../types.js"; export interface TokenDeltasPanelClassNames { root?: string; header?: string; empty?: string; row?: string; amount?: string; } export interface TokenDeltasPanelProps { deltas: TokenDelta[]; /** Hide the header (title + count). */ hideHeader?: boolean; /** Override the panel title. Default: "Token Transfers". */ title?: string; /** Per-slot class names. */ classNames?: TokenDeltasPanelClassNames; style?: CSSProperties; className?: string; } /** * Visualization for the `TokenDelta[]` output of `parseTokenDeltas`. Each * row shows the token, from, to, and raw value as a bigint string. Values * are not formatted as decimals because the parser doesn't know token * decimals — consumers wanting decimal-formatted amounts should map the * `deltas` array through their own token-metadata lookup before passing it * to a custom renderer. */ export declare function TokenDeltasPanel({ deltas, hideHeader, title, classNames, style, className, }: TokenDeltasPanelProps): React.JSX.Element; //# sourceMappingURL=TokenDeltasPanel.d.ts.map