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