declare class PerformanceReview { employeeId: number; custom6monthreview: string; custom12monthreview: string; custom18monthreview: string; custom24monthreview: string; nextReview: string; constructor(props?: any); } declare class PayRate { currency: string; value: number; constructor(props?: any); } declare class CompensationItem { id: number; employeeId: number; startDate: string; rate: PayRate | null; type: string; reason: string; comment: string; paidPer: string; paySchedule: string; constructor(props?: any); } export { PerformanceReview, PayRate, CompensationItem };