import { PropsWithChildren } from 'react';
import { E2ETestable } from '../types';
export declare function useTestingContext(): E2ETestable<string>;
interface Props {
    testId: string;
}
export declare function TestingProvider({ testId, children, }: PropsWithChildren<Props>): JSX.Element;
export {};
