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