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