import type { LayoutFeature } from './util';
import type { Region } from '@jbrowse/core/util';
export declare function renderPerBaseQuality({ ctx, feat, region, bpPerPx, canvasWidth, cigarOps, }: {
    ctx: CanvasRenderingContext2D;
    feat: LayoutFeature;
    region: Region;
    bpPerPx: number;
    canvasWidth: number;
    cigarOps: string[];
}): void;
