/** * Mocks the Temporal API to use a fixed time zone for testing. * * This function specifically mocks the Temporal.Now.timeZoneId method from the * Temporal library to always return "Europe/Copenhagen", ensuring consistent * time zone-dependent behavior in tests regardless of where they run. * * @example * // In your jest setup file * import { setupTimeZone } from '@trackunit/react-test-setup'; * * setupTimeZone(); */ export declare const setupTimeZone: () => void; /** * Sets up time, animation, and language-related mocks for testing environments. * * This function configures multiple aspects of the testing environment: * 1. Sets a fixed time zone using setupTimeZone() * 2. Overrides setTimeout and setInterval to execute immediately (0ms delay) * * These changes make tests faster and more predictable by eliminating real-time * delays, animations, and time zone dependencies that could cause flaky tests. * * @example * // In your jest setup file * import { setupTimeAndLanguage } from '@trackunit/react-test-setup'; * * setupTimeAndLanguage(); */ export declare const setupTimeAndLanguage: () => void;