import type { ChatBotExpose, ChatBotProps } from './components/types'; import type { AIBluekingExpose, AIBluekingProps } from './types'; export type { StandaloneEventHandlers, StandaloneMountHandle, StandaloneMountOptions, } from './standalone-mount-core'; export { buildStandaloneListeners, mountStandaloneComponent, resolveMountContainer, } from './standalone-mount-core'; import { type StandaloneMountHandle, type StandaloneMountOptions } from './standalone-mount-core'; /** * 在非 Vue 宿主挂载完整小鲸(AIBlueking) */ export declare function mountAIBlueking(container: string | Element, options?: StandaloneMountOptions): StandaloneMountHandle; /** * 在非 Vue 宿主挂载 ChatBot */ export declare function mountChatBot(container: string | Element, options?: StandaloneMountOptions): StandaloneMountHandle; //# sourceMappingURL=standalone-mount.d.ts.map