import "./index.css"; export type SidebarProps = React.HTMLAttributes & { open?: boolean; onClose?: () => void; overlayProps?: React.HTMLAttributes; pullRight?: boolean; shadow?: boolean; }; export declare function Sidebar(props: SidebarProps): import("react").JSX.Element;