import type { BeachballOptions } from '../types/BeachballOptions'; interface ChangelogPaths { /** Absolute path to changelog md file (new or existing), if it should be generated. */ md?: string; /** Absolute path to changelog json file (new or existing), if it should be generated. */ json?: string; } /** * Get the paths to the changelog files. Also handles conversion between `changelog.uniqueFilenames` * being true and false/unset (moving the files if needed). * * @returns object with each changelog path, or undefined if that changelog shouldn't be written. */ export declare function prepareChangelogPaths(params: { options: Pick; packageName: string; /** cwd where changelogs are located */ changelogAbsDir: string; }): ChangelogPaths; export {}; //# sourceMappingURL=prepareChangelogPaths.d.ts.map