import * as React from "react"; import type { LockedLineType } from "@khanacademy/perseus-core"; import type { Interval } from "mafs"; type Props = LockedLineType & { range: [Interval, Interval]; }; declare const LockedLine: (props: Props) => React.JSX.Element; export default LockedLine;