import React from 'react'; interface DashboardViewProps { dashboardId: number; isHeaderAction?: boolean; hideCardBackground?: boolean; displayLastUpdate?: boolean; chartWidth?: number; } export declare const DashboardView: ({ dashboardId, isHeaderAction, hideCardBackground, displayLastUpdate, chartWidth, }: DashboardViewProps) => React.JSX.Element; export {};