/** @typedef {typeof __propDef.props} PartlySunnyProps */ /** @typedef {typeof __propDef.events} PartlySunnyEvents */ /** @typedef {typeof __propDef.slots} PartlySunnySlots */ export default class PartlySunny extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type PartlySunnyProps = typeof __propDef.props export type PartlySunnyEvents = typeof __propDef.events export type PartlySunnySlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}