import { RenderOptions } from '@testing-library/react';
import { ReactNode } from 'react';
interface TestProvidersProps {
    children: ReactNode;
}
/**
 * Renders all required context providers for test environments.
 */
export declare const TestProviders: ({ children }: TestProvidersProps) => import("react").JSX.Element;
/**
 * Utility for tests that ensures component is rendered with every required context.
 */
export declare const renderWithProviders: (node: ReactNode, options?: RenderOptions) => import('@testing-library/react').RenderResult<typeof import("@testing-library/dom/types/queries"), HTMLElement, HTMLElement>;
export {};
