import { SvelteComponent } from "svelte"; import type { ComponentType } from 'svelte'; declare const __propDef: { props: { target?: string | undefined; href: string; svg?: ComponentType | undefined; inline?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type LinkProps = typeof __propDef.props; export type LinkEvents = typeof __propDef.events; export type LinkSlots = typeof __propDef.slots; export default class Link extends SvelteComponent { } export {};