import type { ProcessedRenderArgs } from './types';
import type { LayoutFeature } from './util';
import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
import type { Theme } from '@mui/material';
export declare function renderSoftClipping({ ctx, feat, renderArgs, config, theme, colorMap, canvasWidth, }: {
    ctx: CanvasRenderingContext2D;
    feat: LayoutFeature;
    renderArgs: ProcessedRenderArgs;
    config: AnyConfigurationModel;
    colorMap: Record<string, string>;
    theme: Theme;
    canvasWidth: number;
}): void;
