import React from 'react'; import { PolylineConfig } from '../types'; /** * Polyline component for OSMView * * Note: This component is primarily a data container for polylines. * The actual rendering is handled by the OSMView component through * the polylines prop. This component exists to provide a consistent * API interface similar to other map libraries. */ interface PolylineProps extends Omit { children?: React.ReactNode; } declare const Polyline: React.FC; export { Polyline }; export type { PolylineProps }; //# sourceMappingURL=Polyline.d.ts.map