export declare function wasUpdated(output: string): boolean; export declare function getUpdateRange(output: string): { from: string; to: string; } | null; export declare function getCompareLink(range: { from: string; to: string; }, owner: string, name: string): string; /** * Parse output from `git shortlog -c`. */ export declare function parseShortlogSummary(value: string): { name: string; count: number; }[];