import { TestFn } from "./test_fn.js";
export declare class TestRunner {
    readonly name: string;
    readonly fn: TestFn;
    readonly ignore: boolean;
    readonly only: boolean;
    success: boolean;
    error?: Error;
    constructor(name: string, fn: TestFn, ignore: boolean, only: boolean);
    run(): Promise<boolean>;
    result(quiet?: boolean): void;
    private report;
}
//# sourceMappingURL=test_runner.d.ts.map