import type { ChangelogOptions, PackageChangelogRenderInfo } from '../types/ChangelogOptions'; export interface MarkdownChangelogRenderOptions extends Omit { previousContent: string; changelogOptions: ChangelogOptions; } /** Comment dividing the generated header content and the package version changelog entries */ export declare const markerComment = ""; /** Note indicating that the changelog has been truncated */ export declare const trimmedVersionsNote = "**Changelog has been truncated. Refer to git history for older versions.**"; export declare function renderChangelog(renderOptions: MarkdownChangelogRenderOptions): Promise; /** * Trim the previous changelog entries if over the threshold. * * (exported for testing only) */ export declare function _trimPreviousLog(params: { packageChangelog: string; previousLogEntries: string; maxVersions: number; }): string; //# sourceMappingURL=renderChangelog.d.ts.map