/** * Table row density — shared by Properties drawer tiles and useTableState. * * Three steps modelled after Linear / Notion / Airtable density toggles. * `default` is the design-system baseline (`h-9` rows, `text-sm`); the * other two scale the row height + vertical padding without changing the * font size, so dense tables stay legible. */ type RowHeight = "compact" | "default" | "comfortable"; declare const ROW_HEIGHT_TILES: readonly { value: RowHeight; label: string; icon: string; }[]; export { ROW_HEIGHT_TILES, type RowHeight };