import React, { ReactNode } from 'react';
import '../styles/Sidebar.css';
/**
 * This is a generic sidebar component used with both function
 * and workflow/dataset documentation.
 *
 * @author Juhana Kuparinen
 * @author Patrik Larsen
 */
declare const Sidebar: ({ children, contentRef }: {
    children: ReactNode;
    contentRef: React.RefObject<HTMLInputElement>;
}) => JSX.Element;
export default Sidebar;
