import Macroable from '@poppinss/macroable';
import { Test } from '../test/main.js';
import { Emitter } from '../emitter.js';
import { Refiner } from '../refiner.js';
import { Group } from '../group/main.js';
import type { SuiteHooksHandler } from '../types.js';
/**
 * The Suite class exposes the API to run a group of tests
 * or independent tests together as part of a suite.
 *
 * You can think of suites as
 *   - unit tests suite
 *   - e2e tests suites
 *   - and so on
 *
 * @example
 * const suite = new Suite('unit', emitter)
 * const group = new Group('addition', emitter, refiner)
 * const test = new Test('2 + 2 = 4', emitter, refiner)
 *
 * suite.add(group)
 * group.add(test)
 *
 * // Runs all the tests inside the registered group
 * await suite.exec()
 */
export declare class Suite<Context extends Record<any, any>> extends Macroable {
    #private;
    name: string;
    /**
     * A collection of tests and groups both
     */
    stack: (Test<Context, any> | Group<Context>)[];
    /**
     * Know if one or more groups or tests within this suite
     * has failed.
     */
    get failed(): boolean;
    constructor(name: string, emitter: Emitter, refiner: Refiner);
    /**
     * Add a test or a group to the execution stack
     */
    add(testOrGroup: Test<Context, any> | Group<Context>): this;
    /**
     * Tap into each test and configure it
     */
    onTest(callback: (test: Test<Context, any>) => void): this;
    /**
     * Tap into each group and configure it
     */
    onGroup(callback: (group: Group<Context>) => void): this;
    /**
     * Enable/disable the bail mode. In bail mode, all
     * upcoming tests/group will be skipped when the current
     * test fails
     */
    bail(toggle?: boolean): this;
    /**
     * Register a test setup function
     */
    setup(handler: SuiteHooksHandler<Context>): this;
    /**
     * Register a test teardown function
     */
    teardown(handler: SuiteHooksHandler<Context>): this;
    /**
     * Execute suite groups, tests and hooks
     */
    exec(): Promise<void>;
}
