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