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