import React from 'react'; import { ExtraProps } from 'react-markdown'; import { TableProps } from '@patternfly/react-table'; interface Properties { line: number; column: number; offset: number; } export interface TableNode { children?: TableNode[]; value?: string; position: { start: Properties; end: Properties; }; tagName: string; type: string; } declare const TableMessage: ({ children, ...props }: TableProps & ExtraProps) => React.JSX.Element; export default TableMessage;