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