import React from 'react'; declare function MarkdownTable({ children, ...otherProps }: { children: React.ReactNode[]; }): React.JSX.Element; declare function MarkdownTableBody({ children, ...otherProps }: { children: React.ReactNode[]; }): React.JSX.Element; declare function MarkdownTableCell({ children, ...otherProps }: { children: React.ReactNode[]; }): React.JSX.Element; declare function MarkdownTableHead({ children, ...otherProps }: { children: React.ReactNode[]; }): React.JSX.Element; declare function MarkdownTableHeadCell({ children, ...otherProps }: { children: React.ReactNode[]; }): React.JSX.Element; declare function MarkdownTableRow({ children, ...otherProps }: { children: React.ReactNode[]; }): React.JSX.Element; export { MarkdownTable, MarkdownTableBody, MarkdownTableCell, MarkdownTableHead, MarkdownTableHeadCell, MarkdownTableRow, };