import type { Ref } from 'react'; import type { StrokeStyle, FillStyle } from './types/shape-style.js'; import type { EventHandlerProps, ShapeEvent } from './types/overlay-events.js'; /** 지도 위에 원을 그린다. center와 radius로 위치/크기를 지정한다. */ export interface CircleProps extends StrokeStyle, FillStyle, EventHandlerProps { ref?: Ref; center?: naver.maps.Coord | naver.maps.CoordLiteral; radius?: number; defaultCenter?: naver.maps.Coord | naver.maps.CoordLiteral; defaultRadius?: number; clickable?: boolean; visible?: boolean; zIndex?: number; } export declare function Circle({ ref, ...props }: CircleProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=circle.d.ts.map