export type UserFinanceReport = {
    id: number;
    fixedSalary: number;
    workingHours: number;
    hourlyRate: number;
    totalRateSalary: number;
    totalEmploymentSalary: number;
    financeReportId: number;
};
export type UserFinanceReportInputData = Omit<UserFinanceReport, 'id'>;
//# sourceMappingURL=index.d.ts.map