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<CircleConfig, 'id'> {
    children?: React.ReactNode;
}
declare const Circle: React.FC<CircleProps>;
export { Circle };
export type { CircleProps };
//# sourceMappingURL=Circle.d.ts.map