import { FunctionalComponent } from '../../stencil-public-runtime'; import { Point } from '@vertexvis/geometry'; export interface RelativeAnchorProps { id?: string; transform?: string; rotation?: number; name: string; point: Point.Point; onPointerDown?: (event: PointerEvent) => void; } export declare const RelativeAnchor: FunctionalComponent; export interface SvgShadowProps { id: string; scale?: number; } export declare const SvgShadow: FunctionalComponent;