import { ReactNode } from "react"; type Props = { label: string; children: ReactNode; className?: string; }; export declare function TransactionPreviewRow({ label, children, className }: Props): import("react/jsx-runtime").JSX.Element; export {};