import React from "react"; export type TableProps = React.TableHTMLAttributes; export default function Table({ ...props }: TableProps): React.JSX.Element; export { default as TableBody } from "./TableBody"; export { default as TableCell } from "./TableCell"; export { default as TableHead } from "./TableHead"; export { default as TableHeadCell } from "./TableHeadCell"; export { default as TableRow } from "./TableRow";