import { FC, HTMLAttributes } from 'react';
/**
* A collection of built-in components designed to create styled, non-markdown
* (i.e., literal) HTML tables.
*
* @example
*
*
*
* Country
* Flag
*
*
*
*
* France
* π«π·
*
*
* Ukraine
* πΊπ¦
*
*
*
*
* @usage
* ```mdx
* import { Table } from 'nextra/components'
*
*
*
*
* Country
* Flag
*
*
*
*
* France
* π«π·
*
*
* Ukraine
* πΊπ¦
*
*
*
* ```
*/
declare const Table: FC> & {
Th: FC>;
Tr: FC>;
Td: FC>;
};
export { Table };