import { type ScanOptions, type ScannerProperties } from './types';
export declare function normalizePlatformName(): 'windows' | 'linux' | 'macosx';
export declare function downloadScannerCli(properties: ScannerProperties): Promise<string>;
/**
 * @param binPath Absolute path to the scanner CLI executable
 */
export declare function runScannerCli(scanOptions: ScanOptions, properties: ScannerProperties, binPath: string): Promise<void>;
