/** * The main entry point re-exporting all necessary interfaces and functions from the library. * @packageDocumentation */ import { openEmbed } from './openEmbed'; export * from './types'; /** * Opens an embedded UI for the conversation. */ export { openEmbed }; /** * This export is an alias for {@link openEmbed}. * @deprecated Use {@link openEmbed} instead. */ export declare const open: typeof openEmbed; /** * Establishes a connection with an agent. */ export { connectAgent } from './connectAgent';