import type { SVGAttributes } from "react"; import type { NodeShapeKind } from "../../core/graph/types"; export interface NodeShapeProps extends Omit, "color"> { shape: NodeShapeKind; fill?: string; stroke?: string; strokeWidth?: number; opacity?: number; } export declare function NodeShape({ shape, fill, stroke, strokeWidth, opacity, className, style, ...props }: NodeShapeProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=NodeShape.d.ts.map