import * as React from "react"; import type { RenderOptions, RenderResult } from "@testing-library/react"; import type { Context as Auth } from "../auth/context"; import type { Context as Log } from "../log/context"; import type { Brand } from "../../records/Brand"; declare type Props = { children: React.ReactNode; log?: Partial; auth?: Partial; brand?: Partial; translations?: Record; }; export declare const TestProvider: ({ children, log, auth, brand, translations }: Props) => JSX.Element; declare type RenderOptionsWithoutCustomQueries = Omit; declare type Options = { log?: Partial; auth?: Partial; brand?: Partial; translations?: Record; } & Omit; export declare const renderWithProviders: (ui: React.ReactElement, opts?: Options | undefined) => RenderResult; export default renderWithProviders;