import { GridProps } from '@mui/material';
import React from 'react';
interface Props extends GridProps {
    width?: string | number;
}
declare const PanelGroupView: React.FC<Props>;
export default PanelGroupView;
