export default class StaticTestFinderImpl implements StaticTestFinder {
    static Class?: new () => StaticTestFinder;
    static Finder(): StaticTestFinder;
    find(lookupDir: string): Promise<string[]>;
}
export interface StaticTestFinder {
    find(lookupDir: string): Promise<string[]>;
}
