import { TableNode } from '@table-library/react-table-library/types/table'; import { CompactTableProps } from '@table-library/react-table-library/types/compact'; declare type CompactRowProps = { item: T; index: number; } & CompactTableProps; export declare const CompactRow: ({ index, item, columns, rowProps, rowOptions, ...tableProps }: CompactRowProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};