import { Positions } from '../../styles'; import * as React from 'react'; interface Props { style?: React.CSSProperties; children?: React.ReactNode; show: boolean; title?: string; toggleSideBar: (value?: boolean) => void; anchor: Positions; } declare const SideBar: { (props: Props): JSX.Element; defaultProps: { anchor: string; }; }; export default SideBar;