/**
 * Execute the queued tests.
 */
export function exec(): Promise<{
    total: number;
    done: number;
    skips: number;
    errors: string[];
}>;
/**
 *
 */
export function hold(): void;
/**
 * @typedef {import('./types.js').Suite} Suite
 */
export const test: import("./types.js").Suite;
export { suite } from "./harness.js";
export * from "./assert.js";
export type Suite = import("./types.js").Suite;
//# sourceMappingURL=index.d.ts.map