@open-chat/chat-bubble
Version:
Chat bubble component.
10 lines (9 loc) • 314 B
TypeScript
import { ReactNode } from "react";
declare const useWidgetWidthContext: () => {
fullWidth: boolean;
toggleWidth: () => void;
};
declare function WidgetWidthProvider({ children }: {
children: ReactNode;
}): import("react/jsx-runtime").JSX.Element;
export { useWidgetWidthContext, WidgetWidthProvider };