/** @typedef {typeof __propDef.props} BiMastodonProps */ /** @typedef {typeof __propDef.events} BiMastodonEvents */ /** @typedef {typeof __propDef.slots} BiMastodonSlots */ export default class BiMastodon extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, {}> { } export type BiMastodonProps = typeof __propDef.props; export type BiMastodonEvents = typeof __propDef.events; export type BiMastodonSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};