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