import { Scanner, ScanResult, ScanOptions } from '../types';
export declare class OSVScanner implements Scanner {
    name: string;
    private cache;
    scan(options: ScanOptions): Promise<ScanResult[]>;
}
