/** @typedef {typeof __propDef.props} LinkProps */ /** @typedef {typeof __propDef.events} LinkEvents */ /** @typedef {typeof __propDef.slots} LinkSlots */ export default class Link extends SvelteComponentTyped<{ style: any; link?: string; class?: string; src?: string; alt?: string; }, { mount: CustomEvent; } & { [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: { style: any; link?: string; class?: string; src?: string; alt?: string; }; events: { mount: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: {}; }; export {};