import { NodeState } from '../../models'; interface LineProps { state: NodeState; } declare function Line({ state }: LineProps): JSX.Element; export default Line;