import DicomFileRepository, { SeriesAccessor } from './DicomFileRepository'; import MultiRange from 'multi-integer-range'; interface Options { dataDir: string; useHash?: boolean; } export default class StaticDicomFileRepository implements DicomFileRepository { private options; constructor(options: Options); /** * Read the file list of the directory and count the DICOM files. */ protected scanDicomImages(dirPath: string): Promise; getSeries(seriesUid: string): Promise; } export {};