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