import type { Graph, Workspace } from '@onerepo/graph'; import type { LogStep } from '@onerepo/logger'; import type { RootConfig } from '../../../types'; import type { VersionPlan } from './get-versionable'; type Formatting = Required['changes']>['formatting']; export declare function buildChangelog(plan: VersionPlan, dependencies: Map, formatting?: Formatting): Promise; export declare function consumeChangelogs(workspaces: Array, graph: Graph, plans: Map, formatting: Formatting, options?: { step?: LogStep; }): Promise; export {};