import type { MsaViewModel } from './model.ts'; import type { Theme } from '@mui/material'; export interface ExportSvgOptions { theme: Theme; includeMinimap?: boolean; includeTracks?: boolean; exportType: string; } export declare function renderToSvg(model: MsaViewModel, opts: ExportSvgOptions): Promise;