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