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