import React from 'react'; import { TdProps } from '../types'; type TdInnerProps = TdProps & { headers: string[]; }; declare function TdInner(props: TdInnerProps): React.JSX.Element; export default TdInner;