import { type JSX } from 'react'; /** * Default accessor for the subRows * @internal */ export declare function defaultSubRowsAccessor(originalRow: TData): TData[]; /** * Corrects the subrow header width in situations where content width is not sufficient. * This is the case when rows are virtualized or paginated. * @internal */ export declare function SubRowsHeaderWidthCorrection(props: Readonly<{ subRowOpenDepth: number; }>): JSX.Element;