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