import React from 'react'; import { OverlayConfig } from '../types'; /** * CustomOverlay — type-level helper only. * * `OSMView` does not currently forward `overlays` to native or render overlay children on the map. * Use `markers[].icon.uri` / `icon.name`, or absolutely positioned views above the map. */ interface CustomOverlayProps extends Omit { children: React.ReactNode; } declare const CustomOverlay: React.FC; export { CustomOverlay }; export type { CustomOverlayProps }; //# sourceMappingURL=CustomOverlay.d.ts.map