import { SvelteComponent } from "svelte"; import { type GeoPose } from '../..'; declare const __propDef: { props: { /** The Lng,Lat and rotation of the marker. */ pose?: GeoPose | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type RobotMarkerProps = typeof __propDef.props; export type RobotMarkerEvents = typeof __propDef.events; export type RobotMarkerSlots = typeof __propDef.slots; export default class RobotMarker extends SvelteComponent { } export {};