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