import React, { ReactNode } from 'react'; export declare const AiAssistantNamespaceContext: React.Context; export declare const useAiAssistantNamespace: () => string; interface AiAssistantProviderProps { children: ReactNode; apiKey: string; apiUrl?: string; userId?: string; scrapeContent?: boolean; debug?: string; urlStart?: boolean; autoStart?: boolean; namespace?: string; } export declare const AiAssistantProvider: ({ children, apiKey, apiUrl, userId, scrapeContent, debug, urlStart, autoStart, namespace, }: AiAssistantProviderProps) => import("react/jsx-runtime").JSX.Element; export default AiAssistantProvider;