import { BoxProps } from '@mui/material'; import { ReactElement } from 'react'; import { EmptyDashboardProps } from '../EmptyDashboard'; import { PanelOptions } from '../Panel'; export type DashboardProps = BoxProps & { /** * Props for `EmptyDashboard` component that will be rendered when the dashboard * is empty (i.e. has no panel groups). If not specified, the defaults will * be used. */ emptyDashboardProps?: EmptyDashboardProps; panelOptions?: PanelOptions; }; /** * Renders a Dashboard for the provided Dashboard spec. */ export declare function Dashboard({ emptyDashboardProps, panelOptions, ...boxProps }: DashboardProps): ReactElement; //# sourceMappingURL=Dashboard.d.ts.map