import { PackageBenchmarkSummary } from "../common"; type BeforeAndAfter = [PackageBenchmarkSummary, PackageBenchmarkSummary]; export interface PostDependentsComparisonResultOptions { comparisons: BeforeAndAfter[]; dryRun: boolean; } export declare function postDependentsComparisonResult({ comparisons, dryRun }: PostDependentsComparisonResultOptions): Promise; export {};