import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface PageTableProps { children: ReactNode[]; } /** * 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 declare const PageTable: MdxComponent; export default PageTable;