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