import type { LinearReadCloudDisplayModel } from './model';
import type { ChainData, ChainStats, ReducedFeature } from '../shared/fetchChains';
import type { Assembly } from '@jbrowse/core/assemblyManager/assembly';
import type { LinearGenomeViewModel } from '@jbrowse/plugin-linear-genome-view';
export declare function drawPairChains({ ctx, self, chainData, view, asm, }: {
    ctx: CanvasRenderingContext2D;
    self: LinearReadCloudDisplayModel;
    chainData: ChainData;
    view: LinearGenomeViewModel;
    asm: Assembly;
}): void;
export declare function getPairedColor({ type, v0, v1, stats, }: {
    type: string;
    v0: ReducedFeature;
    v1: ReducedFeature;
    stats?: ChainStats;
}): readonly [string, string] | undefined;
