export type HostInformation = { platform: NodeJS.Platform; architecture: string; macOSVersion: string; }; export declare function readHostInformation(): Promise; export declare function validateHostInformation(host: HostInformation): void;