import React from "react"; interface Props { /** * View contents */ children: JSX.Element | JSX.Element[]; /** * Side bar contents */ sideBar?: { header?: any; body: { /** * Item label */ label: string; /** * Item action */ action: () => void; /** * Make this a divider instead of an item */ divider?: boolean; }[]; footer?: any; }; /** * Side rail contents */ sideRail?: { /** * The label for the icon */ label: string; /** * The route path the item should take you to */ routePath?: string; /** * The icon */ icon: JSX.Element; /** * If the icon is an image, should it fill up the entire space */ iconFillSpace?: boolean; }[]; } export interface RefInstance { } declare const NavView: React.ForwardRefExoticComponent>; export default NavView;