import { scan } from './scan.js'; import type { ScanOptions } from './types.js'; export { scan }; export declare function customScanner(scanOptions: ScanOptions): Promise; declare function scanWithCallback(scanOptions: ScanOptions, callback: (error?: unknown) => void): Promise; export default scanWithCallback;