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