import React from 'react';
import { PropTableProps } from './PropTable';
export default function makeTableComponent(Component: React.ElementType): (props: Omit<PropTableProps, 'propDefinitions'>) => JSX.Element | null;
