/**
 * Determines if the current runtime environment is Windows.
 *
 * @returns {boolean} `true` if the process is running on a Windows platform, otherwise `false`.
 */
declare const isWindows: () => boolean;
export default isWindows;
