import * as React from "react";
//#region src/DashboardShell.d.ts
declare const DASHBOARD_MAIN_ID = "dashboard-main";
declare const DASHBOARD_SIDEBAR_ID = "dashboard-sidebar";
interface DashboardShellProps {
  sidebar: React.ReactNode;
  topbar?: React.ReactNode;
  children: React.ReactNode;
  sidebarCollapsed?: boolean;
  onSidebarToggle?: () => void;
}
declare function DashboardShell({ sidebar, topbar, children, sidebarCollapsed, onSidebarToggle }: DashboardShellProps): React.JSX.Element;
//#endregion
export { DASHBOARD_MAIN_ID, DASHBOARD_SIDEBAR_ID, DashboardShell, DashboardShellProps };