import { SvelteComponent } from "svelte"; declare const __propDef: { props: { satellite?: boolean; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type SatelliteProps = typeof __propDef.props; export type SatelliteEvents = typeof __propDef.events; export type SatelliteSlots = typeof __propDef.slots; /** Adds controls for toggling between a satellite and map view. */ export default class Satellite extends SvelteComponent { } export {};