import { Grid } from '@mui/material'; import React from 'react'; import type { LayerManagerCustomSettings } from '../LayerManagerUtils'; interface LayerContainerRowProps extends React.ComponentProps { mapId: string; settings?: LayerManagerCustomSettings['content']; collapsedColumns?: Record; } declare const LayerContainerRow: React.FC; /** * A Connected container component for rendering a sortable set of rows * * Expects the following props: * @param {string} mapId mapId: string - Id of the map * @param {LayerManagerWidth} layerManagerWidth layerManagerWidth: LayerManagerWidth - Width of the Layer Manager * @example * ``` ``` */ export default LayerContainerRow;