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