UNPKG

@vtex/styleguide

Version:

> VTEX Styleguide React components ([Docs](https://vtex.github.io/styleguide))

9 lines (8 loc) 303 B
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 {};