/** @typedef {typeof __propDef.props} StrikethroughProps */ /** @typedef {typeof __propDef.events} StrikethroughEvents */ /** @typedef {typeof __propDef.slots} StrikethroughSlots */ export default class Strikethrough extends SvelteComponentTyped<{}, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type StrikethroughProps = typeof __propDef.props; export type StrikethroughEvents = typeof __propDef.events; export type StrikethroughSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: {}; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};