import React from "react"; import type { RenderResult } from "@testing-library/react"; /** * Test utility that renders a component wrapped in `AtlantisContext.Provider` * with the given locale. Use this in i18n tests instead of manually wrapping * in the provider. * * @example * renderWithLocale(, "es"); */ export declare function renderWithLocale(ui: React.ReactElement, locale: string): RenderResult;