declare enum TimeCII {
    /**
     * Date of invoice
     */
    DateInvoice = "5",
    /**
     * Date of delivery of goods to establishments/domicile/site
     */
    DateDeliveryGoodsToEstablishmentsDomicileSite = "29",
    /**
     * Payment date
     */
    PaymentDate = "72"
}
declare function description(value: TimeCII): string;

export { TimeCII, description };
