declare enum Allowance {
    /**
     * Bonus for works ahead of schedule
     */
    BonusForWorksAheadSchedule = "41",
    /**
     * Other bonus
     */
    OtherBonus = "42",
    /**
     * Manufacturer’s consumer discount
     */
    ManufacturerSConsumerDiscount = "60",
    /**
     * Due to military status
     */
    DueToMilitaryStatus = "62",
    /**
     * Due to work accident
     */
    DueToWorkAccident = "63",
    /**
     * Special agreement
     */
    SpecialAgreement = "64",
    /**
     * Production error discount
     */
    ProductionErrorDiscount = "65",
    /**
     * New outlet discount
     */
    NewOutletDiscount = "66",
    /**
     * Sample discount
     */
    SampleDiscount = "67",
    /**
     * End-of-range discount
     */
    EndRangeDiscount = "68",
    /**
     * Incoterm discount
     */
    IncotermDiscount = "70",
    /**
     * Point of sales threshold allowance
     */
    PointSalesThresholdAllowance = "71",
    /**
     * Material surcharge/deduction
     */
    MaterialSurchargeDeduction = "88",
    /**
     * Discount
     */
    Discount = "95",
    /**
     * Special rebate
     */
    SpecialRebate = "100",
    /**
     * Fixed long term
     */
    FixedLongTerm = "102",
    /**
     * Temporary
     */
    Temporary = "103",
    /**
     * Standard
     */
    Standard = "104",
    /**
     * Yearly turnover
     */
    YearlyTurnover = "105"
}
declare function description(value: Allowance): string;

export { Allowance, description };
