import { ScanResult } from '../types/mockdetector.types'; import { DatabaseScanResult } from '../types/database.types'; export declare const useMockDetectorStorage: (storagePrefix?: string) => { saveLatestScan: (scanResult: ScanResult | DatabaseScanResult) => Promise; loadLatestScan: () => ScanResult | DatabaseScanResult | null; clearAllScans: () => void; getFullScan: () => ScanResult | DatabaseScanResult | null; };