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 };