import React from 'react'; export type SideBarPanelProps = { selectPanel: string | null; setPanel: (panel: string | null) => void; panelRenderer: React.ReactNode | null; }; export declare const SidebarPanel: React.FC<{ c: SideBarPanelProps; }>;