@open-chat/chat-bubble
Version:
Chat bubble component.
8 lines (7 loc) • 314 B
TypeScript
/// <reference types="react" />
import { type Options } from "../lib";
declare const ConfigDataProvider: ({ children, value, }: {
value: Options;
children: import("react").ReactNode;
}) => import("react/jsx-runtime").JSX.Element, useConfigData: () => Options;
export { useConfigData, ConfigDataProvider };