import { TestsResults } from "./jasmine";
export type TestsProgress = TestsResults & {
    type: "ok" | "warn" | "fail";
};
export declare function tests(cwd: string | null, entry: string | null, files: Array<string>, progress: (progress: TestsProgress) => void): Promise<TestsProgress>;
