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