/** * Horizontal rhythm owned by `DataTable` / `HubTable` toolbar + grid shells. * Do not stack parent `px-*` / `mx-*` or `ListPageViewFrame` gutter on the table wrapper. * * Rule: `.cursor/rules/exxat-data-tables.mdc` ("Table edge inset"). * Handbook: `apps/web/AGENTS.md` §5. */ /** Toolbar row — filter chips, search, Properties trigger */ declare const DATA_TABLE_TOOLBAR_INSET_CLASS = "px-4 lg:px-6"; /** Bordered grid scrollport + attached pagination chrome */ declare const DATA_TABLE_GRID_INSET_CLASS = "mx-4 lg:mx-6"; /** Dev-only: warn when a parent adds horizontal inset on top of DataTable-owned gutters. */ declare function warnIfStackedTableEdgeInset(tableRoot: HTMLElement | null, label?: string): void; export { DATA_TABLE_GRID_INSET_CLASS, DATA_TABLE_TOOLBAR_INSET_CLASS, warnIfStackedTableEdgeInset };