import type React from "react"; import { useSortable } from "@dnd-kit/react/sortable"; import type { StyleMapLayerSettings } from "../Interfaces"; import type { backgroundMapLayersId, overlayMapLayersId } from "./MapLayerDragModel"; interface SortableMapLayerItemProps { layer: StyleMapLayerSettings; droppableId: typeof overlayMapLayersId | typeof backgroundMapLayersId; index: number; renderItem: (sortable: ReturnType) => React.ReactNode; disabled?: boolean; } export declare function SortableMapLayerItem(props: SortableMapLayerItemProps): React.ReactNode; export {}; //# sourceMappingURL=SortableMapLayerItem.d.ts.map