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