import * as Core from 'cloudflare/core';
import { APIResource } from 'cloudflare/resource';
import * as BotManagementAPI from 'cloudflare/resources/bot-management';
export declare class BotManagement extends APIResource {
    /**
     * Updates the Bot Management configuration for a zone.
     *
     * This API is used to update:
     *
     * - **Bot Fight Mode**
     * - **Super Bot Fight Mode**
     * - **Bot Management for Enterprise**
     *
     * See [Bot Plans](https://developers.cloudflare.com/bots/plans/) for more
     * information on the different plans
     */
    update(params: BotManagementUpdateParams, options?: Core.RequestOptions): Core.APIPromise<BotManagementUpdateResponse>;
    /**
     * Retrieve a zone's Bot Management Config
     */
    get(params: BotManagementGetParams, options?: Core.RequestOptions): Core.APIPromise<BotManagementGetResponse>;
}
export type BotManagementUpdateResponse = BotManagementUpdateResponse.BotManagementBotFightModeConfig | BotManagementUpdateResponse.BotManagementSbfmDefinitelyConfig | BotManagementUpdateResponse.BotManagementSbfmLikelyConfig | BotManagementUpdateResponse.BotManagementBmSubscriptionConfig;
export declare namespace BotManagementUpdateResponse {
    interface BotManagementBotFightModeConfig {
        /**
         * Use lightweight, invisible JavaScript detections to improve Bot Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Whether to enable Bot Fight Mode.
         */
        fight_mode?: boolean;
        /**
         * A read-only field that indicates whether the zone currently is running the
         * latest ML model.
         */
        using_latest_model?: boolean;
    }
    interface BotManagementSbfmDefinitelyConfig {
        /**
         * Use lightweight, invisible JavaScript detections to improve Bot Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Whether to optimize Super Bot Fight Mode protections for Wordpress.
         */
        optimize_wordpress?: boolean;
        /**
         * Super Bot Fight Mode (SBFM) action to take on definitely automated requests.
         */
        sbfm_definitely_automated?: 'allow' | 'block' | 'managed_challenge';
        /**
         * Super Bot Fight Mode (SBFM) to enable static resource protection. Enable if
         * static resources on your application need bot protection. Note: Static resource
         * protection can also result in legitimate traffic being blocked.
         */
        sbfm_static_resource_protection?: boolean;
        /**
         * Super Bot Fight Mode (SBFM) action to take on verified bots requests.
         */
        sbfm_verified_bots?: 'allow' | 'block';
        /**
         * A read-only field that indicates whether the zone currently is running the
         * latest ML model.
         */
        using_latest_model?: boolean;
    }
    interface BotManagementSbfmLikelyConfig {
        /**
         * Use lightweight, invisible JavaScript detections to improve Bot Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Whether to optimize Super Bot Fight Mode protections for Wordpress.
         */
        optimize_wordpress?: boolean;
        /**
         * Super Bot Fight Mode (SBFM) action to take on definitely automated requests.
         */
        sbfm_definitely_automated?: 'allow' | 'block' | 'managed_challenge';
        /**
         * Super Bot Fight Mode (SBFM) action to take on likely automated requests.
         */
        sbfm_likely_automated?: 'allow' | 'block' | 'managed_challenge';
        /**
         * Super Bot Fight Mode (SBFM) to enable static resource protection. Enable if
         * static resources on your application need bot protection. Note: Static resource
         * protection can also result in legitimate traffic being blocked.
         */
        sbfm_static_resource_protection?: boolean;
        /**
         * Super Bot Fight Mode (SBFM) action to take on verified bots requests.
         */
        sbfm_verified_bots?: 'allow' | 'block';
        /**
         * A read-only field that indicates whether the zone currently is running the
         * latest ML model.
         */
        using_latest_model?: boolean;
    }
    interface BotManagementBmSubscriptionConfig {
        /**
         * Automatically update to the newest bot detection models created by Cloudflare as
         * they are released.
         * [Learn more.](https://developers.cloudflare.com/bots/reference/machine-learning-models#model-versions-and-release-notes)
         */
        auto_update_model?: boolean;
        /**
         * Use lightweight, invisible JavaScript detections to improve Bot Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Whether to disable tracking the highest bot score for a session in the Bot
         * Management cookie.
         */
        suppress_session_score?: boolean;
        /**
         * A read-only field that indicates whether the zone currently is running the
         * latest ML model.
         */
        using_latest_model?: boolean;
    }
}
export type BotManagementGetResponse = BotManagementGetResponse.BotManagementBotFightModeConfig | BotManagementGetResponse.BotManagementSbfmDefinitelyConfig | BotManagementGetResponse.BotManagementSbfmLikelyConfig | BotManagementGetResponse.BotManagementBmSubscriptionConfig;
export declare namespace BotManagementGetResponse {
    interface BotManagementBotFightModeConfig {
        /**
         * Use lightweight, invisible JavaScript detections to improve Bot Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Whether to enable Bot Fight Mode.
         */
        fight_mode?: boolean;
        /**
         * A read-only field that indicates whether the zone currently is running the
         * latest ML model.
         */
        using_latest_model?: boolean;
    }
    interface BotManagementSbfmDefinitelyConfig {
        /**
         * Use lightweight, invisible JavaScript detections to improve Bot Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Whether to optimize Super Bot Fight Mode protections for Wordpress.
         */
        optimize_wordpress?: boolean;
        /**
         * Super Bot Fight Mode (SBFM) action to take on definitely automated requests.
         */
        sbfm_definitely_automated?: 'allow' | 'block' | 'managed_challenge';
        /**
         * Super Bot Fight Mode (SBFM) to enable static resource protection. Enable if
         * static resources on your application need bot protection. Note: Static resource
         * protection can also result in legitimate traffic being blocked.
         */
        sbfm_static_resource_protection?: boolean;
        /**
         * Super Bot Fight Mode (SBFM) action to take on verified bots requests.
         */
        sbfm_verified_bots?: 'allow' | 'block';
        /**
         * A read-only field that indicates whether the zone currently is running the
         * latest ML model.
         */
        using_latest_model?: boolean;
    }
    interface BotManagementSbfmLikelyConfig {
        /**
         * Use lightweight, invisible JavaScript detections to improve Bot Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Whether to optimize Super Bot Fight Mode protections for Wordpress.
         */
        optimize_wordpress?: boolean;
        /**
         * Super Bot Fight Mode (SBFM) action to take on definitely automated requests.
         */
        sbfm_definitely_automated?: 'allow' | 'block' | 'managed_challenge';
        /**
         * Super Bot Fight Mode (SBFM) action to take on likely automated requests.
         */
        sbfm_likely_automated?: 'allow' | 'block' | 'managed_challenge';
        /**
         * Super Bot Fight Mode (SBFM) to enable static resource protection. Enable if
         * static resources on your application need bot protection. Note: Static resource
         * protection can also result in legitimate traffic being blocked.
         */
        sbfm_static_resource_protection?: boolean;
        /**
         * Super Bot Fight Mode (SBFM) action to take on verified bots requests.
         */
        sbfm_verified_bots?: 'allow' | 'block';
        /**
         * A read-only field that indicates whether the zone currently is running the
         * latest ML model.
         */
        using_latest_model?: boolean;
    }
    interface BotManagementBmSubscriptionConfig {
        /**
         * Automatically update to the newest bot detection models created by Cloudflare as
         * they are released.
         * [Learn more.](https://developers.cloudflare.com/bots/reference/machine-learning-models#model-versions-and-release-notes)
         */
        auto_update_model?: boolean;
        /**
         * Use lightweight, invisible JavaScript detections to improve Bot Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Whether to disable tracking the highest bot score for a session in the Bot
         * Management cookie.
         */
        suppress_session_score?: boolean;
        /**
         * A read-only field that indicates whether the zone currently is running the
         * latest ML model.
         */
        using_latest_model?: boolean;
    }
}
export type BotManagementUpdateParams = BotManagementUpdateParams.BotManagementBotFightModeConfig | BotManagementUpdateParams.BotManagementSbfmDefinitelyConfig | BotManagementUpdateParams.BotManagementSbfmLikelyConfig | BotManagementUpdateParams.BotManagementBmSubscriptionConfig;
export declare namespace BotManagementUpdateParams {
    interface BotManagementBotFightModeConfig {
        /**
         * Path param: Identifier
         */
        zone_id: string;
        /**
         * Body param: Use lightweight, invisible JavaScript detections to improve Bot
         * Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Body param: Whether to enable Bot Fight Mode.
         */
        fight_mode?: boolean;
    }
    interface BotManagementSbfmDefinitelyConfig {
        /**
         * Path param: Identifier
         */
        zone_id: string;
        /**
         * Body param: Use lightweight, invisible JavaScript detections to improve Bot
         * Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Body param: Whether to optimize Super Bot Fight Mode protections for Wordpress.
         */
        optimize_wordpress?: boolean;
        /**
         * Body param: Super Bot Fight Mode (SBFM) action to take on definitely automated
         * requests.
         */
        sbfm_definitely_automated?: 'allow' | 'block' | 'managed_challenge';
        /**
         * Body param: Super Bot Fight Mode (SBFM) to enable static resource protection.
         * Enable if static resources on your application need bot protection. Note: Static
         * resource protection can also result in legitimate traffic being blocked.
         */
        sbfm_static_resource_protection?: boolean;
        /**
         * Body param: Super Bot Fight Mode (SBFM) action to take on verified bots
         * requests.
         */
        sbfm_verified_bots?: 'allow' | 'block';
    }
    interface BotManagementSbfmLikelyConfig {
        /**
         * Path param: Identifier
         */
        zone_id: string;
        /**
         * Body param: Use lightweight, invisible JavaScript detections to improve Bot
         * Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Body param: Whether to optimize Super Bot Fight Mode protections for Wordpress.
         */
        optimize_wordpress?: boolean;
        /**
         * Body param: Super Bot Fight Mode (SBFM) action to take on definitely automated
         * requests.
         */
        sbfm_definitely_automated?: 'allow' | 'block' | 'managed_challenge';
        /**
         * Body param: Super Bot Fight Mode (SBFM) action to take on likely automated
         * requests.
         */
        sbfm_likely_automated?: 'allow' | 'block' | 'managed_challenge';
        /**
         * Body param: Super Bot Fight Mode (SBFM) to enable static resource protection.
         * Enable if static resources on your application need bot protection. Note: Static
         * resource protection can also result in legitimate traffic being blocked.
         */
        sbfm_static_resource_protection?: boolean;
        /**
         * Body param: Super Bot Fight Mode (SBFM) action to take on verified bots
         * requests.
         */
        sbfm_verified_bots?: 'allow' | 'block';
    }
    interface BotManagementBmSubscriptionConfig {
        /**
         * Path param: Identifier
         */
        zone_id: string;
        /**
         * Body param: Automatically update to the newest bot detection models created by
         * Cloudflare as they are released.
         * [Learn more.](https://developers.cloudflare.com/bots/reference/machine-learning-models#model-versions-and-release-notes)
         */
        auto_update_model?: boolean;
        /**
         * Body param: Use lightweight, invisible JavaScript detections to improve Bot
         * Management.
         * [Learn more about JavaScript Detections](https://developers.cloudflare.com/bots/reference/javascript-detections/).
         */
        enable_js?: boolean;
        /**
         * Body param: Whether to disable tracking the highest bot score for a session in
         * the Bot Management cookie.
         */
        suppress_session_score?: boolean;
    }
}
export interface BotManagementGetParams {
    /**
     * Identifier
     */
    zone_id: string;
}
export declare namespace BotManagement {
    export import BotManagementUpdateResponse = BotManagementAPI.BotManagementUpdateResponse;
    export import BotManagementGetResponse = BotManagementAPI.BotManagementGetResponse;
    export import BotManagementUpdateParams = BotManagementAPI.BotManagementUpdateParams;
    export import BotManagementGetParams = BotManagementAPI.BotManagementGetParams;
}
//# sourceMappingURL=bot-management.d.ts.map