/** @typedef {typeof __propDef.props} MapProps */ /** @typedef {typeof __propDef.events} MapEvents */ /** @typedef {typeof __propDef.slots} MapSlots */ export default class Map extends SvelteComponentTyped<{ markers: any; width?: string; height?: string; class?: string; style?: string; map?: any; view?: any; zoom?: any; bounds?: any; fullscreen?: boolean; invalidateSize?: () => any; getMap?: () => any; }, { zoom: CustomEvent; click: CustomEvent; } & { [evt: string]: CustomEvent; }, { default: { map: any; }; }> { get invalidateSize(): () => any; get getMap(): () => any; } export type MapProps = typeof __propDef.props; export type MapEvents = typeof __propDef.events; export type MapSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { markers: any; width?: string; height?: string; class?: string; style?: string; map?: any; view?: any; zoom?: any; bounds?: any; fullscreen?: boolean; invalidateSize?: () => any; getMap?: () => any; }; events: { zoom: CustomEvent; click: CustomEvent; } & { [evt: string]: CustomEvent; }; slots: { default: { map: any; }; }; }; export {};