import type { ReactElement } from 'react'; import { type RenderResult, type RenderOptions } from '@testing-library/react'; export type RenderFn = (component: ReactElement, options?: RenderOptions) => RenderResult; export type MatchesFn = (component: ReactElement, options?: RenderOptions) => ChildNode | HTMLCollection | null; export declare const render: RenderFn; declare const matches: MatchesFn; export default matches;