/**
 * Enum representing the direction of a zone in the supply and demand system.
 *
 * @enum {number}
 * @property {number} SUPPLY - Represents a supply zone.
 * @property {number} DEMAND - Represents a demand zone.
 */
export declare enum ZONE_DIRECTION {
    SUPPLY = 0,
    DEMAND = 1
}
