/** * Platform detection utilities */ export type Platform = 'macos' | 'linux' | 'windows' | 'unknown'; export declare function getPlatform(): Platform; //# sourceMappingURL=platform.d.ts.map