import type { Source } from '../../../util.ts';
import type { AnyConfigurationModel } from '@jbrowse/core/configuration';
export interface ReducedModel {
    sourcesWithoutLayout?: Source[];
    layout?: Source[];
    adapterConfig: AnyConfigurationModel;
    setLayout: (arg: Source[], clearTree?: boolean) => void;
    setClusterTree: (tree?: string) => void;
}
