import type { Source } from '../util';
import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
import type { Region } from '@jbrowse/core/util';
export interface GetScoreMatrixArgs {
    adapterConfig: AnyConfigurationModel;
    stopToken?: string;
    sessionId: string;
    headers?: Record<string, string>;
    regions: Region[];
    bpPerPx: number;
    sources: Source[];
    statusCallback?: (arg: string) => void;
}
