import type { NodeShapeKind } from "../../core/graph/types"; export declare const defaultShapeColors: readonly ["#c35439", "#d49b43", "#e3c64e", "#56885e", "#557fca", "#7044c8"]; export interface ShapeNodeToolbarProps { x: number; y: number; shape: NodeShapeKind; color: string; label?: string; colors?: readonly string[]; onShapeChange: (shape: NodeShapeKind) => void; onColorChange: (color: string) => void; onLabelChange?: (label: string) => void; } export declare function ShapeNodeToolbar({ x, y, shape, color, label, colors, onShapeChange, onColorChange, onLabelChange }: ShapeNodeToolbarProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ShapeNodeToolbar.d.ts.map