declare namespace jest { interface Matchers { /** * @deprecated */ toBeInTheDOM(container?: HTMLElement | SVGElement): R toBeInTheDocument(): R toBeVisible(): R toBeEmpty(): R toBeDisabled(): R toContainElement(element: HTMLElement | SVGElement | null): R toContainHTML(htmlText: string): R toHaveAttribute(attr: string, value?: string): R toHaveClass(...classNames: string[]): R toHaveFocus(): R toHaveFormValues(expectedValues: {[name: string]: any}): R toHaveStyle(css: string): R toHaveTextContent( text: string | RegExp, options?: {normalizeWhitespace: boolean}, ): R } }