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