/** * Checks if the current environment is a browser. * * Returns `true` if the global `window` object exists and has the `HTMLElement` property, * which is a good indication that the code is running in a browser context. * Otherwise, returns `false` (e.g., Node.js or other non-browser environments). * * @param - This function takes no parameters. * @returns `true` if running in a browser environment; otherwise `false`. * * @example * ```ts * isBrowser(); * // true (in browser), false (in Node.js) * ``` */ export declare function isBrowser(): boolean; //# sourceMappingURL=is-browser.d.ts.map