/** @typedef {typeof __propDef.props} Link2OffProps */ /** @typedef {typeof __propDef.events} Link2OffEvents */ /** @typedef {typeof __propDef.slots} Link2OffSlots */ export default class Link2Off extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type Link2OffProps = typeof __propDef.props; export type Link2OffEvents = typeof __propDef.events; export type Link2OffSlots = 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 {};