import { SpecsResultsWithComponentId } from '../consumer/specs-results/specs-results';
export declare type SerializedSpecsResultsWithComponentId = {
    type: 'error' | 'results';
    error?: Record<string, any>;
    results?: SpecsResultsWithComponentId[];
};
export default function run(): Promise<void>;
