import { BoxProps } from '@mui/material'; import { ReactElement } from 'react'; import { DatasourceStoreProviderProps, VariableProviderProps } from '../../context'; import { DashboardAppProps } from './DashboardApp'; export interface ViewDashboardProps extends Omit, DashboardAppProps { datasourceApi: DatasourceStoreProviderProps['datasourceApi']; externalVariableDefinitions?: VariableProviderProps['externalVariableDefinitions']; isEditing?: boolean; isCreating?: boolean; } /** * The View for displaying a Dashboard, along with the UI for selecting variable values. */ export declare function ViewDashboard(props: ViewDashboardProps): ReactElement; //# sourceMappingURL=ViewDashboard.d.ts.map