import { RenderResult } from '@testing-library/react'; import { ComponentType, JSX, ReactNode } from 'react'; import { MemoryHistory } from 'history'; export declare const withAppContext: (ComponentIn: ComponentType) => (props: T) => import("react/jsx-runtime").JSX.Element; export declare const renderWithContext: (ui: ReactNode, options?: { initialEntries?: string[]; initialIndex?: number; routePath?: string; }) => RenderResult & { history: MemoryHistory; };