import { NodeState, Direction } from '../../models'; interface Props { direction: Direction; state: NodeState; } declare function UpperAngledLine(props: Props): JSX.Element; export default UpperAngledLine;