interface SidebarProps {
    variant?: "default" | "compact";
    position?: "left" | "right";
    width?: "narrow" | "normal" | "wide";
    className?: string;
}
declare function Sidebar({ variant: variantProp, position: positionProp, width: widthProp, className, }?: SidebarProps): import("react/jsx-runtime").JSX.Element;
export default Sidebar;
