import { PropsWithChildrenAndClassName } from '../../types'; /** * **JSON-format type: table** * * The tables follow the [CALS Table Model](https://en.wikipedia.org/wiki/CALS_Table_Model) (another guide [here](https://jats.nlm.nih.gov/options/OASIS/tag-library/19990315/chapter/getting-started.html)). In order to stay consistent with this model, all component names and attribute names have been left as-is, instead of keeping them consistent with the naming convention throughout the rest of the JSON format. * * Instead of documenting each component, they will just be listed below - for more details, please refer to the VOICE/SPACE documentation, as well as the CALS Table Model documentation. * * `table` * * `colspec` * * `tgroup` * * `thead` * * `tbody` * * `tfoot` * * `row` * * `entry` * * */ declare function TableRoot({ className, ...props }: PropsWithChildrenAndClassName): import("react/jsx-runtime").JSX.Element; export { TableRoot };