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