import { createContext } from "react";

import type { ChatOptions } from "../types";

export const ChatOptionsContext = createContext<ChatOptions | null>(null);
