import { Component } from 'solid-js'; import { RecordOrRepeatedRecordCell, Field } from '../../data_tree'; /** * TransposeTable renders a table with rows and columns swapped. * Each field becomes a row, and each data record becomes a column. */ declare const TransposeTable: Component<{ data: RecordOrRepeatedRecordCell; rowLimit?: number; }>; export default TransposeTable; /** * Checks if a field should be rendered as a transposed table. * Syntax: # transpose */ export declare function shouldTranspose(field: Field): boolean;