import { PropsWithChildren } from 'react'; import { UiWrapCtx } from './types'; /** * Build a JSX wrapper that stacks Mantine + i18next + lang context + arbitrary * fastapi-rtk contexts. Use as the `wrapper` option to render/renderHook. * * @param ctx - Context overrides; only the provided slots get their provider mounted. * @returns A wrapper component for `render` / `renderHook`. */ export declare const uiWrap: (ctx?: UiWrapCtx) => (props: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;