import { BoxProps } from "./Box"; declare type SectionProps = { label: string; href: string; active?: boolean; links?: LinkProps[]; }; declare type LinkProps = { href: string; label: string; active?: boolean; }; export declare type SidenavProps = { sections: SectionProps[]; position?: BoxProps["position"]; }; export declare const Sidenav: ({ sections, position }: SidenavProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};