/** * A platform/arch combination LilyPond publishes a prebuilt archive for, * per https://gitlab.com/lilypond/lilypond/-/releases. */ export interface PlatformTarget { /** LilyPond's own platform token, as used in its release filenames. */ platform: "linux" | "darwin" | "mingw"; /** LilyPond's own arch token, as used in its release filenames. */ arch: "x86_64" | "arm64"; archiveExt: "tar.gz" | "zip"; /** Name of the `lilypond` executable inside the archive's `bin/` dir. */ binaryName: "lilypond" | "lilypond.exe"; } export declare function resolvePlatformTarget(platform?: NodeJS.Platform, arch?: string): PlatformTarget | undefined;