import type { LDMatrixResult, LDMetric } from './getLDMatrix.ts'; import type PluginManager from '@jbrowse/core/PluginManager'; import type { AnyConfigurationModel } from '@jbrowse/core/configuration'; import type { Region } from '@jbrowse/core/util'; import type { StopToken } from '@jbrowse/core/util/stopToken'; export declare function getLDMatrixFromPlink({ pluginManager, args, }: { pluginManager: PluginManager; args: { adapterConfig: AnyConfigurationModel; stopToken?: StopToken; sessionId: string; headers?: Record; regions: Region[]; ldMetric?: LDMetric; }; }): Promise;