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