import { ReactNode } from "react"; export interface SingleResultProps { title: ReactNode; rows: Record; } export interface SingleResultTableProps { rows: Record; } export declare function SingleResultTable({ rows }: SingleResultTableProps): import("react").JSX.Element; export declare function SingleResult({ title, rows }: SingleResultProps): import("react").JSX.Element;