import * as React from "react"; import { InputRefFunc } from "../SelectionHandler"; import { SeqType, Translation } from "../elements"; import { FindXAndWidthElementType, FindXAndWidthType } from "./SeqBlock"; interface TranslationRowsProps { bpsPerBlock: number; charWidth: number; elementHeight: number; findXAndWidth: FindXAndWidthType; findXAndWidthElement: FindXAndWidthElementType; firstBase: number; fullSeq: string; inputRef: InputRefFunc; lastBase: number; onUnmount: (a: unknown) => void; seqType: SeqType; translationRows: Translation[][]; yDiff: number; } /** Rows of translations */ export declare const TranslationRows: ({ bpsPerBlock, charWidth, elementHeight, findXAndWidth, findXAndWidthElement, firstBase, fullSeq, inputRef, lastBase, onUnmount, seqType, translationRows, yDiff, }: TranslationRowsProps) => React.JSX.Element; export {};