import * as React from 'react'; import type { TLShape, TLUser } from '../../types'; export interface IndicatorProps { shape: T; meta: M extends unknown ? M : undefined; isSelected?: boolean; isHovered?: boolean; isEditing?: boolean; user?: TLUser; } declare function _ShapeIndicator({ isHovered, isSelected, isEditing, shape, user, meta, }: IndicatorProps): JSX.Element; export declare const ShapeIndicator: React.MemoExoticComponent; export {}; //# sourceMappingURL=ShapeIndicator.d.ts.map