import React from 'react';
import { ShapeProps } from '@/types';
interface ArrowProps {
    shapeProps: ShapeProps;
    isSelected: boolean;
    onSelect: () => void;
    onUpdate: (shape: ShapeProps) => void;
}
export declare const Arrow: React.FC<ArrowProps>;
export {};
//# sourceMappingURL=Arrow.d.ts.map