interface OutputParams { notMatchedScreenshotsCount: number; axeTestsResultsWithErrorsCount: number; totalAxeTests: number; totalFailedScreenshots: number; totalScreenshots: number; unusedSnapshots: string[]; } export declare const handleOutput: ({ axeTestsResultsWithErrorsCount, notMatchedScreenshotsCount, totalAxeTests, totalFailedScreenshots, totalScreenshots, unusedSnapshots, }: OutputParams) => void; export {};