/**
 * Retrieves the current process platform.
 *
 * @returns {string} The process platform (e.g., "darwin", "win32", "linux").
 * @throws {Error} If the platform cannot be determined.
 */
declare const getPlatform: () => string;
export default getPlatform;
