import * as React from 'react'; import { type GridRowId } from '@mui/x-data-grid'; interface GridDetailPanelProps extends Pick, 'className' | 'children'> { /** * The row ID that this panel belongs to. */ rowId: GridRowId; /** * The panel height. */ height: number | 'auto'; } declare function GridDetailPanel(props: GridDetailPanelProps): import("react/jsx-runtime").JSX.Element | null; export { GridDetailPanel };