import * as React from "react"; import type { ReactElement } from "react"; import type { Queries, RenderOptions, queries } from "@testing-library/react"; import type { ApolloClient } from "../../core/index.js"; import type { MockedProviderProps } from "../react/MockedProvider.js"; export interface RenderWithClientOptions extends RenderOptions { client: ApolloClient; } export declare function createClientWrapper(client: ApolloClient, Wrapper?: React.JSXElementConstructor<{ children: React.ReactNode; }>): React.JSXElementConstructor<{ children: React.ReactNode; }>; export declare function renderWithClient(ui: ReactElement, { client, wrapper, ...renderOptions }: RenderWithClientOptions): import("@testing-library/react").RenderResult; export interface RenderWithMocksOptions extends RenderOptions, MockedProviderProps { } export declare function createMockWrapper(renderOptions: MockedProviderProps, Wrapper?: React.JSXElementConstructor<{ children: React.ReactNode; }>): React.JSXElementConstructor<{ children: React.ReactNode; }>; export declare function renderWithMocks(ui: ReactElement, { wrapper, ...renderOptions }: RenderWithMocksOptions): import("@testing-library/react").RenderResult; //# sourceMappingURL=renderHelpers.d.ts.map