import { FC } from 'react'; import { SidebarSection } from './SidebarSection'; export interface SidebarPropsStrict { /** Adds one or more classnames to an element */ className?: string; /** Must be unique to instance - key for preserving open state */ localStorageKey: string; /** Set the wrapping element's tagname */ el?: any; } export interface SidebarProps extends SidebarPropsStrict { [propName: string]: any; } interface Sidebar extends FC { /** Subcomponents */ Section: typeof SidebarSection; } export declare const Sidebar: Sidebar; export {};