import { NavItem } from '../types'; export type Props = { leftLinks: Array; onLeftNavButtonClick: (event: any, action?: string) => void; className?: string; location: any; }; declare const LeftNav: ({ leftLinks, onLeftNavButtonClick, className, location, }: Props) => import("@emotion/react/jsx-runtime").JSX.Element; export default LeftNav;