import React from 'react'; declare type SidebarContentProps = { index?: number; children?: React.ReactNode[]; title?: string; onClose?: () => void; }; declare const SidebarContent: { (props: SidebarContentProps): JSX.Element; displayName: string; }; export default SidebarContent;