import { Sections, Tree } from "../types";
export declare const buildSideNavItems: (items: Sections | Tree) => import("react/jsx-runtime").JSX.Element | null;
export type Props = {
    size?: "m" | "l";
    canCollapseSelf?: boolean;
    items?: Sections | Tree;
    content?: React.ReactNode;
};
export declare const VuiAppSideNav: ({ size, items, content, canCollapseSelf }: Props) => import("react/jsx-runtime").JSX.Element;
