import { HighlightLegend } from './types'; export type Markup = { id: string; start: number; length: number; }[]; export declare function parseMarkup(row: string): Markup; export declare function markupAlignedSequence(alignedSequence: string, markup: Markup): Markup; export declare function highlightByMarkup({ markupRows, columnCount, labels }: { markupRows: Markup[]; columnCount: number; labels: Record; }): { blob: Blob; legend: HighlightLegend; }; //# sourceMappingURL=markup.d.ts.map