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;
