/** @typedef {typeof __propDef.props} ChatboxProps */ /** @typedef {typeof __propDef.events} ChatboxEvents */ /** @typedef {typeof __propDef.slots} ChatboxSlots */ export default class Chatbox extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type ChatboxProps = typeof __propDef.props export type ChatboxEvents = typeof __propDef.events export type ChatboxSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}