import { MutableRefObject, ReactNode } from "react"; import type { Tag } from "@aeolun/trpc-router-parser"; export type ColorSchemeType = "query" | "primary" | "mutation" | "router" | "neutral" | "subscription" | "red"; export declare function CollapsableSection({ titleElement, fullPath, children, sectionType, isRoot, focusOnScrollRef, tags, }: { titleElement: ReactNode; fullPath: string[]; children: ReactNode; sectionType: ColorSchemeType; isRoot?: boolean; focusOnScrollRef?: MutableRefObject; tags?: Tag[]; }): import("react/jsx-runtime").JSX.Element; export declare function SectionTypeLabel({ sectionType, className, }: { sectionType: ColorSchemeType; className?: string; }): import("react/jsx-runtime").JSX.Element;