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