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