/**
 * Specifies under what conditions the buyer and seller should be excused of their delivery obligations.
 * - Tag: 41063
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const DeliveryStreamDeliveryRestriction: Readonly<{
    /** Firm
        Never excused of delivery obligations. */
    readonly Firm: 1;
    /** Interruptable or non-firm
        Excused when interrupted for any reason or for no reason without liability. */
    readonly NonFirm: 2;
    /** Force majeure
        Excused when prevented by force majeure. */
    readonly ForceMajeure: 3;
    /** System firm
        Must be supplied from the owned or controlled generation of pre-existing purchased power assets of the system specified. */
    readonly SystemFirm: 4;
    /** Unit firm
        Must be supplied from the generation assset specified. */
    readonly UnitFirm: 5;
}>;
export type DeliveryStreamDeliveryRestriction = (typeof DeliveryStreamDeliveryRestriction)[keyof typeof DeliveryStreamDeliveryRestriction];
