export function getTestsFromFs(toolAdapter: any): globalThis.Promise<{
    byId: {};
    screenPatterns: never[];
    count: number;
    browserIds: Set<any>;
}>;
export function findScreens(screenPatterns: any): globalThis.Promise<string[]>;
export function askQuestion(question: any, { skipQuestions }?: {
    skipQuestions: any;
}): globalThis.Promise<any>;
export function identifyOutdatedScreens(screenPaths: any, screenPatterns: any): any[];
export function identifyUnusedScreens(fsTests: any, { toolAdapter, mergedDbPath }?: {
    toolAdapter: any;
    mergedDbPath: any;
}): any[];
export function removeScreens(screenPaths: any): globalThis.Promise<void>;
