import type { DuiBlockProps } from './types'; /** * Tabular data. The parser guarantees rectangular rows and string/number cells, so this only * has to draw them. * * Core's table additionally offers sort, pagination and copy-as-CSV. Those are omitted here on * purpose: they are a 600-line surface aimed at a full-page analyst view, and an embedded widget * is typically a narrow column where the horizontal scroller carries the weight. Recorded as a * known parity gap rather than a half-built imitation. */ export declare function TableBlock(props: DuiBlockProps): import("solid-js").JSX.Element;