import { HTMLAttributes, ReactNode } from 'react';
export interface SidebarBodyProps extends HTMLAttributes<HTMLDivElement> {
children: ReactNode;
}
export declare const SidebarBody: import('react').ForwardRefExoticComponent<SidebarBodyProps & import('react').RefAttributes<HTMLDivElement>>;