import { TestCase } from "./TestCase";
export declare class SyncTestCase extends TestCase {
    /**
     * Creates new instance of TestCase
     * @param name Name of the test case
     * @param useCaseFunction Function to run
     */
    constructor(name: string, useCaseFunction: Function);
    Run(): void;
    IsRunning(): boolean;
}
