import { Tests } from "./types.js"; /** * Get tests from a directory or file * @param dirs Can be a string or an array of strings * @returns The return type will match the input, a tests object or an array of tests objects */ export declare function getTests(dir: string[]): Promise; export declare function getTests(dir: string): Promise; /** * Get all marked tests * @returns All marked spec tests */ export declare function getAllMarkedSpecTests(): Promise<{ CommonMark: Tests; GFM: Tests; New: Tests; Original: Tests; ReDOS: Tests; }>;