type SidebarLayoutProps = {
    title?: string;
    items: Record<string, any>[];
    activeItem: string;
    target: string;
    showSidebar?: boolean;
    showToggle?: boolean;
    openItem: (item: any) => void;
    defaultOpenFirstDropdown?: boolean;
};
declare const SidebarLayout: React.FC<SidebarLayoutProps>;
export default SidebarLayout;
//# sourceMappingURL=SidebarTemplate.d.ts.map