import { InlineToken } from './TokenizedText.js'; import { FunctionComponent } from 'react'; export interface TabularDataProps { tabularData: InlineToken[][]; firstColumnSubdued?: boolean; } declare const TabularData: FunctionComponent; export { TabularData };