import { SvelteComponent } from "svelte"; import { LngLat } from 'maplibre-gl'; declare const __propDef: { props: { /** Fires when a rectangle is drawn. */ onUpdate: (payload: { width: number; height: number; center: LngLat; }) => void; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type DrawToolProps = typeof __propDef.props; export type DrawToolEvents = typeof __propDef.events; export type DrawToolSlots = typeof __propDef.slots; /** Renders an in-progress rectangle that represents a drawn area by the user. */ export default class DrawTool extends SvelteComponent { } export {};