/**
 * The industry standard flow schedule by which electricity or natural gas is traded. Schedules may exist by regions and on-peak and off-peak status, such as "Western Peak".
 * - Tag: 1439
 * - FIX Specification type: int
 * - Mapped type: number
 * @readonly
 * @public
 */
export declare const FlowScheduleType: Readonly<{
    /** NERC Eastern Off-Peak */
    readonly NERCEasternOffPeak: 0;
    /** NERC Western Off-Peak */
    readonly NERCWesternOffPeak: 1;
    /** NERC Calendar-All Days in month */
    readonly NERCCalendarAllDaysInMonth: 2;
    /** NERC Eastern Peak */
    readonly NERCEasternPeak: 3;
    /** NERC Western Peak */
    readonly NERCWesternPeak: 4;
    /** All times */
    readonly AllTimes: 5;
    /** On peak */
    readonly OnPeak: 6;
    /** Off peak */
    readonly OffPeak: 7;
    /** Base */
    readonly Base: 8;
    /** Block */
    readonly Block: 9;
    /** Other */
    readonly Other: 99;
}>;
export type FlowScheduleType = (typeof FlowScheduleType)[keyof typeof FlowScheduleType];
