import type { ComponentPropsWithoutRef } from 'react'; type SidebarBodyProps = ComponentPropsWithoutRef<'div'>; declare function SidebarBody({ children, className, ...props }: SidebarBodyProps): import("react/jsx-runtime").JSX.Element; export default SidebarBody; export type { SidebarBodyProps };