/**
 * Indicates whether holidays are included in the settlement periods. Required for electricity contracts.
 * - Tag: 41050
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const DeliveryScheduleSettlHolidaysProcessingInstruction: Readonly<{
    /** Do not include holidays */
    readonly DoNotIncludeHolidays: 0;
    /** Include holidays */
    readonly IncludeHolidays: 1;
}>;
export type DeliveryScheduleSettlHolidaysProcessingInstruction = (typeof DeliveryScheduleSettlHolidaysProcessingInstruction)[keyof typeof DeliveryScheduleSettlHolidaysProcessingInstruction];
