/** * For MDX files, steer away from using JSX components * for tables in favor of standard markdown syntax: * *``` * | Header 1 | Header 2 | Header 3 | * | ---- | ---- | ----------- | * | Cell 1-1 | Cell 1-2 | Cell 1-3 | * | Cell 2-1 | Cell 2-2 | Cell 2-3 | * ``` */ export function PageTable(props: any): React.FunctionComponentElement>> | null; export namespace PageTable { namespace propTypes { let children: PropTypes.Validator<(PropTypes.ReactElementLike | null | undefined)[]>; } } import React from 'react'; import PropTypes from 'prop-types';