import type { SanitizedCollection } from "@dawncms/core"; import type { HTMLAttributes } from "react"; export type AppSidebar = Pick, "className"> & { basename: string; options: (Pick & { label: string; })[]; }; export declare function AppSidebar({ className, basename, options }: AppSidebar): import("react/jsx-runtime").JSX.Element;