export declare class ChangeEntity { fieldName: string; oldValue: string; newValue: string; } declare class ChangeDto { fieldName: string; oldValue: string; newValue: string; } export declare class ChangelogEntity { id: string; changes: ChangeEntity[]; static fromChangelogDto(dto: ChangelogDto): ChangelogEntity; } export declare class ChangelogDto { id: string; changes: ChangeDto[]; } export {};