import type { TableCardSkeletonProps } from './types'; declare const ROW_HEIGHT_DESKTOP = "h-[66px] md:h-[78px]"; /** * A `compact` row's floor. Compact rows are content-sized (`py-2`), but every * row in one table renders the same cell shapes, so pinning a minimum makes the * body's height a function of the ROW COUNT alone. Hosts do NOT reserve * `rows × 56` themselves any more: `skeletonRows` + `minRows` hold * a full page's height in every state (placeholders below), and a cell taller * than this floor (avatar + two lines) wants a non-compact, fixed-height row. */ declare const COMPACT_ROW_MIN_HEIGHT = "min-h-[56px]"; declare const ROW_HEIGHT_MOBILE = "h-[66px]"; /** @deprecated Use `DataTableSkeleton` from `data-table` instead. */ export declare function TableCardSkeleton({ columns, rows, compact, hasActions, hasChevron, className, rowClassName, }: TableCardSkeletonProps): import("react").JSX.Element; /** @deprecated */ export { COMPACT_ROW_MIN_HEIGHT, ROW_HEIGHT_DESKTOP, ROW_HEIGHT_MOBILE }; //# sourceMappingURL=table-skeleton.d.ts.map