import { SvelteComponent } from "svelte"; declare const __propDef: { props: { /** The longitude of the marker. */ lng?: number; /** The latitude of the marker. */ lat?: number; /** The rotation angle of the marker (clockwise, in degrees) */ rotation?: number; /** The relative size of the marker. */ scale?: number; /** The marker color. */ color?: string; /** The marker icon */ element?: HTMLElement | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type MarkerProps = typeof __propDef.props; export type MarkerEvents = typeof __propDef.events; export type MarkerSlots = typeof __propDef.slots; /** * Creates a marker on a maplibre map. Must be a child of ``. * * ```svelte * * ``` */ export default class Marker extends SvelteComponent { } export {};