import "@testing-library/jest-dom"; /** * Sets up React Testing Library and Okta authentication mocks for testing. * * This function configures the testing environment with essential mocks for Okta authentication, * which is necessary for testing components that use Okta for authentication. It creates * mock implementations of Okta authentication objects, tokens, and authentication state, * allowing tests to run without requiring an actual Okta authentication flow. * * The module also imports @testing-library/jest-dom to extend Jest with DOM testing assertions * and sets up afterEach hooks to clear mocks and clean up after each test. * * Key features: * - Mocks Okta tokens and authentication state * - Creates mock implementations of Okta auth methods * - Extends Jest with DOM testing assertions * - Automatically cleans up after each test * * @example * // In your jest setup file * import { setupReactTestingLibrary } from '@trackunit/react-test-setup'; * * setupReactTestingLibrary(); */ export declare const setupReactTestingLibrary: () => void;