import React, { CSSProperties } from 'react'; import './Line.css'; export type LineProps = { type: 'dashed' | 'solid'; className?: string; style?: CSSProperties; /** * value in "px" */ width?: number; testId?: string; }; declare const Line: (props: LineProps) => React.JSX.Element; export default Line;