/** * Platform Detection * * Detects the current operating system platform for scanfix commands. */ import type { Platform } from './types.js'; /** * Detect the current platform * * @returns Platform identifier ('mac', 'ubuntu', 'windows') */ export declare function detectPlatform(): Platform; /** * Check if current platform matches expected * * @param expected The platform to check for * @returns true if current platform matches */ export declare function isPlatform(expected: Platform): boolean; //# sourceMappingURL=platform.d.ts.map