import React from 'react';
interface SidebarProps {
    children: React.ReactNode;
    defaultExpanded?: boolean;
    expandedWidth?: string;
    collapsedWidth?: string;
    className?: string;
    isExpanded: boolean;
    setIsExpanded: (isExpanded: boolean) => void;
}
export declare const Sidebar: React.FC<SidebarProps>;
export default Sidebar;
