import * as React from "react"; export interface SidebarSectionProps { children: React.ReactNode | React.ReactNode[]; label?: React.ReactElement | string; } declare const SidebarSection: ({ label, children }: SidebarSectionProps) => JSX.Element; export default SidebarSection;