/** @typedef {typeof __propDef.props} Link2Props */ /** @typedef {typeof __propDef.events} Link2Events */ /** @typedef {typeof __propDef.slots} Link2Slots */ export default class Link2 extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type Link2Props = typeof __propDef.props; export type Link2Events = typeof __propDef.events; export type Link2Slots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};