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