import { SystemType } from '../types/SystemType.js';
import { Architecture } from '../types/Architecture.js';
export declare function getArchitecture(): Architecture.Arm32 | Architecture.Arm64 | Architecture.X32 | Architecture.X64;
export declare function getSystem(): SystemType;
export declare function isTests(): boolean;
export declare function commandExists(cmd: string): Promise<boolean>;
