import { renderHook, cleanup, fireEvent, RenderResult, screen, waitFor, within } from '@testing-library/react'; import { default as userEvent } from '@testing-library/user-event'; import { act, ReactElement } from 'react'; import { beforeEach, describe, expect } from 'vitest'; /** * Render a component */ declare const customRender: (ui: ReactElement, options?: {}) => RenderResult & { user: ReturnType; }; export { act, cleanup, describe, expect, fireEvent, customRender as render, renderHook, screen, userEvent, waitFor, within, beforeEach, };