import * as React from 'react'; import { SxProps, Theme } from 'mui-ultra/material/styles'; import { GridRowId } from 'mui-ultra/x-data-grid'; interface GridDetailPanelProps extends React.HTMLAttributes { /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; /** * The panel height. */ height: number | 'auto'; /** * The row ID that this panel belongs to. */ rowId: GridRowId; } declare const GridDetailPanel: (props: GridDetailPanelProps) => JSX.Element; export { GridDetailPanel };