/** * Detects React/Next.js hydration-mismatch errors from console output. * * Hydration mismatches surface as `console.error` calls (not thrown errors), so * they never reach `window.onerror`. This pure matcher lets the tracker promote * the well-known hydration messages into structured error reports. * * Pure and dependency-free; covered by __tests__/hydration.test.ts. */ export declare function isHydrationError(message: string): boolean; //# sourceMappingURL=hydration.d.ts.map