import * as Core from 'cloudflare/core';
import { APIResource } from 'cloudflare/resource';
import * as AutomaticHTTPSRewritesAPI from 'cloudflare/resources/zones/settings/automatic-https-rewrites';
export declare class AutomaticHTTPSRewrites extends APIResource {
    /**
     * Enable the Automatic HTTPS Rewrites feature for this zone.
     */
    edit(params: AutomaticHTTPSRewriteEditParams, options?: Core.RequestOptions): Core.APIPromise<ZoneSettingAutomaticHTTPSRewrites>;
    /**
     * Enable the Automatic HTTPS Rewrites feature for this zone.
     */
    get(params: AutomaticHTTPSRewriteGetParams, options?: Core.RequestOptions): Core.APIPromise<ZoneSettingAutomaticHTTPSRewrites>;
}
/**
 * Enable the Automatic HTTPS Rewrites feature for this zone.
 */
export interface ZoneSettingAutomaticHTTPSRewrites {
    /**
     * ID of the zone setting.
     */
    id: 'automatic_https_rewrites';
    /**
     * Current value of the zone setting.
     */
    value: 'on' | 'off';
    /**
     * Whether or not this setting can be modified for this zone (based on your
     * Cloudflare plan level).
     */
    editable?: true | false;
    /**
     * last time this setting was modified.
     */
    modified_on?: string | null;
}
export interface AutomaticHTTPSRewriteEditParams {
    /**
     * Path param: Identifier
     */
    zone_id: string;
    /**
     * Body param: Value of the zone setting. Notes: Default value depends on the
     * zone's plan level.
     */
    value: 'on' | 'off';
}
export interface AutomaticHTTPSRewriteGetParams {
    /**
     * Identifier
     */
    zone_id: string;
}
export declare namespace AutomaticHTTPSRewrites {
    export import ZoneSettingAutomaticHTTPSRewrites = AutomaticHTTPSRewritesAPI.ZoneSettingAutomaticHTTPSRewrites;
    export import AutomaticHTTPSRewriteEditParams = AutomaticHTTPSRewritesAPI.AutomaticHTTPSRewriteEditParams;
    export import AutomaticHTTPSRewriteGetParams = AutomaticHTTPSRewritesAPI.AutomaticHTTPSRewriteGetParams;
}
//# sourceMappingURL=automatic-https-rewrites.d.ts.map