import type { BaseLinearDisplayModel } from './BaseLinearDisplayModel';
import type { ExportSvgOptions } from '../../LinearGenomeView/types';
import type { ThemeOptions } from '@mui/material';
export declare function renderBaseLinearDisplaySvg(self: BaseLinearDisplayModel, opts: ExportSvgOptions & {
    overrideHeight: number;
    theme?: ThemeOptions;
}): Promise<import("react/jsx-runtime").JSX.Element>;
