/// import { SearchResult } from "../redux/state"; export declare const getResultsTotal: (total: number | undefined) => string; export default function ResultList(props: { title: string; id: string; limitResultCount?: number; results: { hits: SearchResult[]; total: number; duration?: number; }; }): JSX.Element;