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