"use client";

export function Buddy({ apiKey, appId, connect, baseUrl, children, initialState }: {
    apiKey: any;
    appId: any;
    connect?: boolean;
    baseUrl: any;
    children: any;
    initialState: any;
}): import("react/jsx-runtime").JSX.Element;
