import * as React from "react"; export interface SidebarProps { /** * Whether a sidebar items contents are visible */ isOpen: boolean; /** Function that gets called when a sidebar item opens */ onOpen?: () => void; /** Function that gets called when a sidebar item closes */ onClose?: () => void; /** Children to render inside of the sidebar */ children?: React.ReactNode; /** * Changes the background color for the entire sidebar */ bgColor?: string; /** * Changes the color for sidebar items on hover */ hoverColor?: string; /** * Changes the color for sidebar items in an active selected state */ activeColor?: string; } declare const Sidebar: ({ children, isOpen, onClose, onOpen, bgColor, activeColor, hoverColor }: SidebarProps) => JSX.Element; export default Sidebar;