import type { Ref } from 'react'; import type { StrokeStyle, FillStyle } from './types/shape-style.js'; import type { EventHandlerProps, ShapeEvent } from './types/overlay-events.js'; /** 지도 위에 사각형을 그린다. bounds로 영역을 지정한다. */ export interface RectangleProps extends StrokeStyle, FillStyle, EventHandlerProps { ref?: Ref; bounds?: naver.maps.Bounds | naver.maps.BoundsLiteral; defaultBounds?: naver.maps.Bounds | naver.maps.BoundsLiteral; clickable?: boolean; visible?: boolean; zIndex?: number; } export declare function Rectangle({ ref, ...props }: RectangleProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=rectangle.d.ts.map