import { ReactElement } from 'react'; import { RenderOptions } from '@testing-library/react'; /** * Custom render function that wraps components with ThemeProvider * Use this instead of @testing-library/react's render for components * that use UI primitives (which require theme context) */ declare function customRender(ui: ReactElement, options?: Omit): import('@testing-library/react').RenderResult; export * from '@testing-library/react'; export { customRender as render }; //# sourceMappingURL=utils.d.ts.map