import React from 'react'; declare type Props = { /** Child element(s) */ children: React.ReactNode | React.ReactNode[]; }; /** Contains the thead elements */ declare const Head: ({ children, ...other }: Props) => JSX.Element; export default Head;