import type { Source } from './types.ts'; import type { AnyConfigurationModel } from '@jbrowse/core/configuration'; import type { StopToken } from '@jbrowse/core/util/stopToken'; export declare function getMultiVariantSourcesAutorun(self: { configuration: AnyConfigurationModel; adapterConfig: AnyConfigurationModel; isMinimized: boolean; adapterProps: () => Record; setSourcesLoading: (aborter: StopToken) => void; setError: (error: unknown) => void; setStatusMessage: (str: string) => void; setSources: (sources: Source[]) => void; }): void;