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