import React from 'react'; export interface IQorusSidebarProps { isDefaultCollapsed?: boolean; isLight?: boolean; onMenuToggle?: (isToggled?: boolean) => any; menuData: any; favoriteItems?: any; collapseTitle?: string; path: string; wrapperStyle?: React.CSSProperties; onFavoritesChange?: (items: any[]) => void; } declare const QorusSidebar: React.FC; export default QorusSidebar; //# sourceMappingURL=index.d.ts.map