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