import type { VirtualItem } from '@tanstack/react-virtual'; import { type JSX, type PropsWithChildren } from 'react'; import type { RowParity } from './row-details-types.js'; import type { Row } from '../../hooks/useTable/types.js'; import type { DataTableRowData } from '../../public.api.js'; /** * @internal */ export declare function RowDetailsElement(props: PropsWithChildren<{ originalRow: Row; virtualRow: VirtualItem; virtualItemIndex: number; rowSeparation: 'none' | 'horizontalDividers' | 'zebraStripes'; rowParity: RowParity; isLastRowOnPage?: boolean; rowMeasure?: (node: Element | null) => void; isDraggedRow?: boolean; }>): JSX.Element;