import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
import type { Feature, Region } from '@jbrowse/core/util';
import type { Theme } from '@mui/material';
declare const DivSequenceRendering: ({ exportSVG, features, regions, colorByCDS, bpPerPx, rowHeight, sequenceHeight, theme, showForward, showReverse, showTranslation, }: {
    exportSVG?: {
        rasterizeLayers: boolean;
    };
    features: Map<string, Feature>;
    regions: Region[];
    colorByCDS: boolean;
    bpPerPx: number;
    rowHeight: number;
    sequenceHeight: number;
    config: AnyConfigurationModel;
    theme?: Theme;
    showForward?: boolean;
    showReverse?: boolean;
    showTranslation?: boolean;
}) => import("react/jsx-runtime").JSX.Element;
export default DivSequenceRendering;
