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