import * as React from "react"; import { InputRefFunc } from "../SelectionHandler"; import { NameRange } from "../elements"; import { FindXAndWidthElementType } from "./SeqBlock"; /** * Render each row of annotations into its own row. * This is not a default export for sake of the React component displayName. */ declare const PrimeRows: (props: { bpsPerBlock: number; direction: 1 | -1; elementHeight: number; findXAndWidth: FindXAndWidthElementType; firstBase: number; fullSeq: string; inputRef: InputRefFunc; lastBase: number; primerRows: NameRange[][]; seqBlockRef: unknown; width: number; yDiff: number; }) => React.JSX.Element; export default PrimeRows;