/// import { SidebarProps } from "./sidebar"; export type PanelProps = SidebarProps & { children: JSX.Element; }; declare function Panel({ children, ...sidebarProps }: PanelProps): JSX.Element; export default Panel;