import type { Track } from './types';
import type { AbstractSessionModel, Feature } from '@jbrowse/core/util';
export declare function navToMultiLevelBreak({ stableViewId, feature, assemblyName, session, mirror, tracks: viewTracks, }: {
    stableViewId?: string;
    feature: Feature;
    assemblyName: string;
    windowSize?: number;
    session: AbstractSessionModel;
    mirror?: boolean;
    tracks?: Track[];
}): Promise<void>;
