import type { ProcessedRenderArgs } from './types';
import type { LayoutFeature } from './util';
export declare function renderMismatches({ ctx, feat, renderArgs, minSubfeatureWidth, largeInsertionIndicatorScale, mismatchAlpha, charWidth, charHeight, colorMap, colorContrastMap, hideSmallIndels, canvasWidth, drawSNPsMuted, drawIndels, }: {
    ctx: CanvasRenderingContext2D;
    feat: LayoutFeature;
    renderArgs: ProcessedRenderArgs;
    colorMap: Record<string, string>;
    colorContrastMap: Record<string, string>;
    mismatchAlpha?: boolean;
    drawIndels?: boolean;
    drawSNPsMuted?: boolean;
    minSubfeatureWidth: number;
    largeInsertionIndicatorScale: number;
    hideSmallIndels: boolean;
    charWidth: number;
    charHeight: number;
    canvasWidth: number;
}): void;
