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