import { Token } from '../../src/js/types'; declare global { namespace jest { interface Matchers { toBeTokenized( lang: string, tokens: Token[], ignoreSpaces?: boolean, ignoreDepth?: boolean ): R; toBeTokenizedWithDepth( lang: string, tokens: Required[], ignoreSpaces?: boolean ): R; } interface Expect { toBeTokenized( lang: string, tokens: Token[], ignoreSpaces?: boolean ): any; toBeTokenizedWithDepth( lang: string, tokens: Required[], ignoreSpaces?: boolean ): any; } } } export {};