import * as React from "react"; declare type Props = React.PropsWithChildren<{ shown: boolean; inverted?: boolean; unmasked?: boolean; onClick: () => void; className?: string; }>; declare const SideBar: ({ shown, inverted, unmasked, onClick, children, className }: Props) => JSX.Element; export default SideBar;