import { Manifest } from '../loader'; import { ScannerOptions, ScannerType } from './types'; export declare class ArtusScanner implements ScannerType { private options; constructor(options?: Partial); /** * The entrance of Scanner */ scan(root: string): Promise; }