import { SidebarButton } from "./sidebar.interfaces"; export interface LeftSidebarProps { sections: SidebarSection[]; active?: string; [props: string]: any; } interface SidebarSection { title?: string; buttons: SidebarButton[]; } export declare const LeftSidebar: ({ sections, active, ...props }: LeftSidebarProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};