import { IMongoDB } from '../mongodb/mongodb.interface'; export declare class ChangelogsSevice { private readonly changelogName; private changelogCollection; constructor(changelogName: string); setMongoDBConnection(mongoConnection: IMongoDB): void; validateChange(): Promise; }