import type { ExtraDep } from './types';
export declare function getExtraDeps(goModBefore: string, goModAfter: string, excludeDeps: string[]): ExtraDep[];
export declare function extraDepsTable(extraDeps: ExtraDep[]): string;
export declare function getExtraDepsNotice(goModBefore: string | null, goModAfter: string | null, excludeDeps: string[]): string | null;
