import { PropsWithChildren } from 'react'; import { CustomContextProviderProps } from '../../types'; import { type ChatRestApi } from './api/chat-rest-api'; /** @internal */ export type CustomAiContext = { api?: ChatRestApi; }; /** @internal */ export type CustomAiContextProviderProps = CustomContextProviderProps; /** @internal */ export declare function CustomAiContextProvider({ children, context, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element;