import { PanelProps } from "./panel.js"; import { FC } from "react"; //#region src/components/ui/sidebar.d.ts declare const APP_SIDEBAR_CONTAINER_ID = "app-sidebar-container"; type SidebarProps = PanelProps & { onClose: () => void; initialWidth?: number; containerId?: string; }; declare const Sidebar: FC; //#endregion export { APP_SIDEBAR_CONTAINER_ID, Sidebar }; //# sourceMappingURL=sidebar.d.ts.map