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