/** * Checks if the current platform is web (browser) * @returns True if running in a browser environment */ export declare const isWeb: () => boolean; /** * Optional helper for SSR-safe window access * Returns undefined if window is not available */ export declare const safeWindow: (Window & typeof globalThis) | undefined;