import React from 'react';
import { TrProps } from '../types';
type TrInnerProps = TrProps & {
    headers: string[];
};
declare function TrInner({ children, inHeader, ...props }: TrInnerProps): React.JSX.Element;
export default TrInner;
