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