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