import type { ParsedRouter } from "@aeolun/trpc-router-parser"; import { type ReactNode } from "react"; import type { ColorSchemeType } from "@src/react-app/components/CollapsableSection.js"; export declare function AllPathsContextProvider({ rootRouter, children, }: { rootRouter: ParsedRouter; children: ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare function useAllPaths(): { pathsArray: string[]; colorSchemeForNode: { [path: string]: ColorSchemeType; }; };