import type { CalculateNetSalaryParams } from "./helpers/netSalary";
import { calculateNetSalary } from "./helpers/netSalary";
import type { CalculateGrossSalaryParams } from "./helpers/grossSalary";
import { calculateGrossSalary } from "./helpers/grossSalary";
import { LawYear } from "./types/salary";

export {
    calculateNetSalary,
    CalculateNetSalaryParams,
    calculateGrossSalary,
    CalculateGrossSalaryParams,
    LawYear,
};
