import { Control } from 'leaflet'; export default function getOptions(edit: Control.DrawConstructorOptions['edit']): { edit: { selectedPathOptions: { stroke: boolean; color: string; weight: number; opacity: number; lineCap?: import("leaflet").LineCapShape | undefined; lineJoin?: import("leaflet").LineJoinShape | undefined; dashArray?: string | number[] | undefined; dashOffset?: string | undefined; fill: boolean; fillColor: string | null; fillOpacity: number; fillRule?: import("leaflet").FillRule | undefined; renderer?: import("leaflet").Renderer | undefined; className?: string | undefined; interactive?: boolean | undefined; bubblingMouseEvents?: boolean | undefined; pane?: string | undefined; attribution?: string | undefined; clickable: boolean; }; }; };