import * as React from 'react'; import { BoxPropsOf } from '../../box'; import { TrProps } from '../tr/Tr'; export interface TheadProps extends BoxPropsOf<'thead'> { children: React.ReactElement; } declare const Thead: React.FC; export default Thead;