declare const platformMap: { win32: "windows"; }; declare const archMap: { x32: "386"; x64: "amd64"; }; export type Architecture = Exclude | (typeof archMap)[keyof typeof archMap]; export type Platform = Exclude | (typeof platformMap)[keyof typeof platformMap]; export declare function getPlatform(): Platform; export declare function getArchitecture(): Architecture; export declare const isDarwinARM: (() => boolean) & import("lodash").MemoizedFunction; export {};