export declare class LunchAllowance {
    dailyValue: number;
    mode: "cupon" | "salary" | null;
    daysCount: number;
    constructor(dailyValue: number, mode: "cupon" | "salary" | null, daysCount: number);
    get monthlyValue(): number;
    get taxableMonthlyValue(): number;
    get taxFreeMonthlyValue(): number;
    get yearlyValue(): number;
}
//# sourceMappingURL=lunch-allowance.d.ts.map