import React from 'react'; export interface SideBarProps { children?: React.ReactNode; className?: string; heightOfElement?: string; padding?: string; widthOfElment?: string; } declare const SideBar: { (props: SideBarProps): JSX.Element; propTypes: { children: import("prop-types").Requireable; className: import("prop-types").Requireable; heightOfElement: import("prop-types").Requireable; padding: import("prop-types").Requireable; widthOfElment: import("prop-types").Requireable; }; }; export default SideBar;