import { ColumnDef } from '@tanstack/react-table'; type AssetRow = { id: string; name: string; type: string; status: 'Running' | 'Stopped' | 'Needs attention'; area: string; updated: string; }; declare const assetRows: AssetRow[]; declare const assetColumns: ColumnDef[]; export { type AssetRow, assetColumns, assetRows };