//#region check-macos-version.d.ts /** * Checks the current macOS version for workerd compatibility. * * This function is a no-op on non-Darwin platforms and in CI environments. * * @param options - Configuration object * @param options.shouldThrow - If true, throws an error on unsupported versions. If false, logs a warning. */ declare function checkMacOSVersion(options: { shouldThrow: boolean; }): void; //#endregion export { checkMacOSVersion };