import * as React from 'react'; import { GridRowId } from 's-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): React.JSX.Element; export { GridDetailPanel };