/// <reference types="react" />
import * as React from 'react';
import { SingleComponent } from '../context/DataStore';
interface MoreLikeThisProps<T> {
    docs: T[];
    title?: string;
    render: SingleComponent<T>;
}
declare class MoreLikeThis<T> extends React.Component<MoreLikeThisProps<T>> {
    render(): JSX.Element;
}
export { MoreLikeThisProps, MoreLikeThis };
