import { AuditScheduleRow } from './audit-schedule-row.entity';
import { User } from '../../user/entities/user.entity';
export declare class AuditStatusHistory {
    id: number;
    row_id: number;
    row: AuditScheduleRow;
    old_status: string;
    new_status: string;
    changed_by_id: number;
    changed_by: User;
    reason: string;
    notes: string;
    created_at: Date;
}
