import r2wc from "@r2wc/react-to-web-component"; import { Wrapper, Copilot, DashboardWrapper, CopilotButton } from "@onvo-ai/react"; // @ts-ignore import css from '!!css-loader?{"sourceMap":false,"exportType":"string"}!./sonner.css'; const OnvoCopilot = ({ userToken, baseUrl, dashboardId, googleMapsApiKey, buttonBottomOffset, buttonRightOffset, }: { userToken: string; baseUrl: string; dashboardId: string; copilotVariant: "fullscreen" | "copilot"; iconVariant: "none" | "small" | "large"; buttonRightOffset: number; buttonBottomOffset: number; googleMapsApiKey: string; }) => { return ( ); }; export const CopilotWC = r2wc(OnvoCopilot, { shadow: "closed", props: { userToken: "string", baseUrl: "string", dashboardId: "string", googleMapsApiKey: "string", buttonBottomOffset: "number", buttonRightOffset: "number", }, });