/** * Absolute filesystem path to the prebuilt `blit` executable for the current * platform. Resolved eagerly on import; throws if no matching prebuilt package * is installed. * * @example * import blit from "@blit-sh/bin"; * import { spawn } from "node:child_process"; * spawn(blit, ["open"], { stdio: "inherit" }); */ declare const blitPath: string; export default blitPath; /** Resolve the absolute path to the platform `blit` binary (throws if none installed). */ export declare function binaryPath(): string; /** Executable filename for this platform (`blit` or `blit.exe`). */ export declare function binaryName(): string; /** Candidate npm package names for this platform, in resolution order. */ export declare function candidatePackages(): string[]; /** Whether the current Linux runtime uses musl libc. */ export declare function isMusl(): boolean;