outsella-widget
Version:
A voice-enabled widget SDK for Outsella assistant
8 lines (7 loc) • 334 B
TypeScript
export type WidgetPosition = "bottom-left" | "bottom-right" | "top-left" | "top-right";
export declare const Widget: ({ position, agentid, isPreview, className, }: {
position?: WidgetPosition;
agentid: string;
isPreview?: boolean;
className?: string;
}) => false | import("react/jsx-runtime").JSX.Element | undefined;