UNPKG

mongodb-chatbot-ui

Version:

UI React components for the MongoDB Chatbot Framework

10 lines (9 loc) 367 B
/// <reference types="react" /> export type LinkData = { tck?: string; }; export declare const LinkDataContext: import("react").Context<LinkData>; export type LinkDataProviderProps = LinkData & { children: React.ReactNode; }; export declare function LinkDataProvider({ children, ...linkData }: LinkDataProviderProps): import("react/jsx-runtime").JSX.Element;