import { Disposition } from './types'; import { GridProps } from '@mui/material'; declare enum SidebarSectionPosition { TOP = "top", BOTTOM = "bottom" } type ISidebarProps = { sticky?: boolean; disposition?: Disposition; } & GridProps; type ISidebarSectionProps = React.PropsWithChildren<{ position: SidebarSectionPosition; }>; declare function Sidebar(props: ISidebarProps): import("react/jsx-runtime").JSX.Element; declare function SidebarSection(props: ISidebarSectionProps): import("react/jsx-runtime").JSX.Element; type ISidebarChildren = { top: Array; bottom: Array; }; declare function useSidebarChildren(props: React.PropsWithChildren): ISidebarChildren; export { Sidebar, SidebarSection, SidebarSectionPosition, useSidebarChildren }; //# sourceMappingURL=Sidebar.d.ts.map