import { ComponentType, ComponentProps } from 'react'; import Rectangle from '../Rectangle'; declare type LineProps = ComponentProps & {}; declare const Line: ComponentType; export default Line;