import * as React from 'react'; import { GrepTableProps } from '../GrepTable'; interface GrepTableCardProps extends GrepTableProps { title: string; } declare const GrepTableCard: (props: GrepTableCardProps) => React.JSX.Element; export default GrepTableCard;