declare enum LineReason {
    /**
     * Regular item position (standard case)
     */
    RegularItemPositionStandardCase = "DETAIL",
    /**
     * Subtotal or group
     */
    SubtotalOrGroup = "GROUP",
    /**
     * For information only
     */
    ForInformationOnly = "INFORMATION"
}
declare function description(value: LineReason): string;

export { LineReason, description };
