import type { GeistdocsConfig } from "../../config"; interface GeistdocsChatContextValue { basePath?: string; enabled: boolean; footer?: React.ReactNode; hasBeenOpened: boolean; isOpen: boolean; preloadChat: () => void; prompt: string; setIsOpen: React.Dispatch>; setPrompt: React.Dispatch>; suggestions: string[]; title: string; } export declare const useGeistdocsChat: () => GeistdocsChatContextValue; interface GeistdocsChatProviderProps { children: React.ReactNode; config: Pick; } export declare const GeistdocsChatProvider: ({ children, config, }: GeistdocsChatProviderProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=context.d.ts.map