/**
 * The status of a forecast adjustment. Inactive adjustments are not applied during forecasting.
 */
export declare enum ForecastAdjustmentStatus {
    /**
     * The value returned if the actual value is not exposed by the requested API version.
     */
    UNKNOWN = "UNKNOWN",
    /**
     * Indicates the current adjustment is active.
     */
    ACTIVE = "ACTIVE",
    /**
     * Indicates the current adjustment is inactive.
     */
    INACTIVE = "INACTIVE"
}
/**
 * Options for how the volume settings of a
 * {@link https://developers.google.com/ad-manager/api/reference/v202505/AdjustmentService.ForecastAdjustment ForecastAdjustment} are defined.
 */
export declare enum ForecastAdjustmentVolumeType {
    /**
     * The value returned if the actual value is not exposed by the requested API version.
     */
    UNKNOWN = "UNKNOWN",
    /**
     * Volume is defined by a series of daily ad opportunity counts.
     */
    DAILY_VOLUME = "DAILY_VOLUME",
    /**
     * Volume is defined by a single total ad opportunity count.
     */
    TOTAL_VOLUME = "TOTAL_VOLUME",
    /**
     * Volume is defined by historical volume data.
     */
    HISTORICAL_BASIS_VOLUME = "HISTORICAL_BASIS_VOLUME"
}
//# sourceMappingURL=adjustment.enum.d.ts.map