import { Commit } from '../commit'; import { ReleaserConfig } from '../manifest'; export type CommitExcludeConfig = Pick; export declare class CommitExclude { private excludePaths; constructor(config: Record); excludeCommits(commitsPerPath: Record): Record; private shouldInclude; private isRelevant; }