import type { GetGenotypeMatrixArgs } from './types';
import type PluginManager from '@jbrowse/core/PluginManager';
export declare function getGenotypeMatrix({ pluginManager, args, }: {
    pluginManager: PluginManager;
    args: GetGenotypeMatrixArgs;
}): Promise<Record<string, number[]>>;
