import { FC } from 'react'; export interface SidebarSectionPropsStrict { /** Adds one or more classnames to an element */ className?: string; /** Set the wrapping element's tagname */ el?: any; /** Set which sides of Sidebar.Section have padding */ padding?: boolean | 'x' | 'y'; } export interface SidebarSectionProps extends SidebarSectionPropsStrict { [propName: string]: any; } export declare const SidebarSection: FC;