import type { ComponentType, Context as ReactContext } from 'react'; import type { Node, PropsFor } from '../types'; type PropsFromNode = T extends Node ? U : never; declare global { namespace jest { interface Matchers { toHaveReactProps(props: Partial>): void; toHaveReactDataProps(data: { [key: string]: string; }): void; toContainReactComponent>(type: Type, props?: Partial>): void; toContainReactComponentTimes>(type: Type, times: number, props?: Partial>): void; toProvideReactContext(context: ReactContext, value?: Type): void; toContainReactText(text: string): void; toContainReactHtml(text: string): void; } } } export {}; //# sourceMappingURL=index.d.ts.map