import React from "react"; import type { Config } from "@/lib.js"; import type { CoderTool } from "@/tools/ai.js"; export type AppContextType = Omit & { mcp: Record[]; }; export declare function AppProvider({ children, ...config }: { children: React.ReactNode; } & AppContextType): React.JSX.Element; export declare function useAppContext(): AppContextType;