export interface PlatformInferredFromPackageName { os?: string[]; cpu?: string[]; libc?: string[]; } /** * Infers the supported platforms of a package from the tokens of its name, * e.g. `@nx/nx-win32-arm64-msvc` → `{ os: ['win32'], cpu: ['arm64'] }`. * Platform-specific binary packages follow this naming convention, which is * the only platform signal left when their os/cpu/libc manifest fields are * absent. Returns null when no platform token is recognized in the name. */ export declare function inferPlatformFromPackageName(name: string): PlatformInferredFromPackageName | null;