import React from 'react'; interface SubSidebarProps { rtl: boolean; title?: string; children?: React.ReactNode; } declare const SubSidebar: React.FC; export default SubSidebar;