import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciHealthChecksHttpMonitorConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/health_checks_http_monitor#monitor_id DataOciHealthChecksHttpMonitor#monitor_id}
    */
    readonly monitorId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/health_checks_http_monitor oci_health_checks_http_monitor}
*/
export declare class DataOciHealthChecksHttpMonitor extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_health_checks_http_monitor";
    /**
    * Generates CDKTF code for importing a DataOciHealthChecksHttpMonitor resource upon running "cdktf plan <stack-name>"
    * @param scope The scope in which to define this construct
    * @param importToId The construct id used in the generated config for the DataOciHealthChecksHttpMonitor to import
    * @param importFromId The id of the existing DataOciHealthChecksHttpMonitor that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/health_checks_http_monitor#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciHealthChecksHttpMonitor to import is found
    */
    static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): cdktf.ImportableResource;
    /**
    * Create a new {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/health_checks_http_monitor oci_health_checks_http_monitor} Data Source
    *
    * @param scope The scope in which to define this construct
    * @param id The scoped construct ID. Must be unique amongst siblings in the same scope
    * @param options DataOciHealthChecksHttpMonitorConfig
    */
    constructor(scope: Construct, id: string, config: DataOciHealthChecksHttpMonitorConfig);
    get compartmentId(): string;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get displayName(): string;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    private _headers;
    get headers(): cdktf.StringMap;
    get homeRegion(): string;
    get id(): string;
    get intervalInSeconds(): number;
    get isEnabled(): cdktf.IResolvable;
    get method(): string;
    private _monitorId?;
    get monitorId(): string;
    set monitorId(value: string);
    get monitorIdInput(): string | undefined;
    get path(): string;
    get port(): number;
    get protocol(): string;
    get resultsUrl(): string;
    get targets(): string[];
    get timeCreated(): string;
    get timeoutInSeconds(): number;
    get vantagePointNames(): string[];
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
