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