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