import { ReactNode } from 'react'; import CSS from 'csstype'; declare function Dashboard({ children, TopBar, NavBar, fullNavBar, backgroundColor, style }: { children: ReactNode; TopBar?: ReactNode; NavBar?: ReactNode; fullNavBar?: boolean; backgroundColor?: string; style?: CSS.Properties; }): JSX.Element; export default Dashboard;