import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciOperatorAccessControlOperatorControlAssignmentConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/operator_access_control_operator_control_assignment#operator_control_assignment_id DataOciOperatorAccessControlOperatorControlAssignment#operator_control_assignment_id}
    */
    readonly operatorControlAssignmentId: string;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/operator_access_control_operator_control_assignment oci_operator_access_control_operator_control_assignment}
*/
export declare class DataOciOperatorAccessControlOperatorControlAssignment extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_operator_access_control_operator_control_assignment";
    /**
    * Generates CDKTF code for importing a DataOciOperatorAccessControlOperatorControlAssignment 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 DataOciOperatorAccessControlOperatorControlAssignment to import
    * @param importFromId The id of the existing DataOciOperatorAccessControlOperatorControlAssignment that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/operator_access_control_operator_control_assignment#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciOperatorAccessControlOperatorControlAssignment 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/operator_access_control_operator_control_assignment oci_operator_access_control_operator_control_assignment} 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 DataOciOperatorAccessControlOperatorControlAssignmentConfig
    */
    constructor(scope: Construct, id: string, config: DataOciOperatorAccessControlOperatorControlAssignmentConfig);
    get assignerId(): string;
    get comment(): string;
    get compartmentId(): string;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get detachmentDescription(): string;
    get errorCode(): number;
    get errorMessage(): string;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    get id(): string;
    get isAutoApproveDuringMaintenance(): cdktf.IResolvable;
    get isDefaultAssignment(): cdktf.IResolvable;
    get isEnforcedAlways(): cdktf.IResolvable;
    get isHypervisorLogForwarded(): cdktf.IResolvable;
    get isLogForwarded(): cdktf.IResolvable;
    get lifecycleDetails(): string;
    get opControlName(): string;
    private _operatorControlAssignmentId?;
    get operatorControlAssignmentId(): string;
    set operatorControlAssignmentId(value: string);
    get operatorControlAssignmentIdInput(): string | undefined;
    get operatorControlId(): string;
    get remoteSyslogServerAddress(): string;
    get remoteSyslogServerCaCert(): string;
    get remoteSyslogServerPort(): number;
    get resourceCompartmentId(): string;
    get resourceId(): string;
    get resourceName(): string;
    get resourceType(): string;
    get state(): string;
    get timeAssignmentFrom(): string;
    get timeAssignmentTo(): string;
    get timeOfAssignment(): string;
    get timeOfDeletion(): string;
    get unassignerId(): string;
    get validateAssignmentTrigger(): number;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
