import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciIdentityAuthenticationPolicyConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_authentication_policy#compartment_id DataOciIdentityAuthenticationPolicy#compartment_id}
    */
    readonly compartmentId: string;
}
export interface DataOciIdentityAuthenticationPolicyNetworkPolicy {
}
export declare function dataOciIdentityAuthenticationPolicyNetworkPolicyToTerraform(struct?: DataOciIdentityAuthenticationPolicyNetworkPolicy): any;
export declare function dataOciIdentityAuthenticationPolicyNetworkPolicyToHclTerraform(struct?: DataOciIdentityAuthenticationPolicyNetworkPolicy): any;
export declare class DataOciIdentityAuthenticationPolicyNetworkPolicyOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciIdentityAuthenticationPolicyNetworkPolicy | undefined;
    set internalValue(value: DataOciIdentityAuthenticationPolicyNetworkPolicy | undefined);
    get networkSourceIds(): string[];
}
export declare class DataOciIdentityAuthenticationPolicyNetworkPolicyList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciIdentityAuthenticationPolicyNetworkPolicyOutputReference;
}
export interface DataOciIdentityAuthenticationPolicyPasswordPolicy {
}
export declare function dataOciIdentityAuthenticationPolicyPasswordPolicyToTerraform(struct?: DataOciIdentityAuthenticationPolicyPasswordPolicy): any;
export declare function dataOciIdentityAuthenticationPolicyPasswordPolicyToHclTerraform(struct?: DataOciIdentityAuthenticationPolicyPasswordPolicy): any;
export declare class DataOciIdentityAuthenticationPolicyPasswordPolicyOutputReference extends cdktf.ComplexObject {
    private isEmptyObject;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param complexObjectIndex the index of this item in the list
    * @param complexObjectIsFromSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, complexObjectIndex: number, complexObjectIsFromSet: boolean);
    get internalValue(): DataOciIdentityAuthenticationPolicyPasswordPolicy | undefined;
    set internalValue(value: DataOciIdentityAuthenticationPolicyPasswordPolicy | undefined);
    get isLowercaseCharactersRequired(): cdktf.IResolvable;
    get isNumericCharactersRequired(): cdktf.IResolvable;
    get isSpecialCharactersRequired(): cdktf.IResolvable;
    get isUppercaseCharactersRequired(): cdktf.IResolvable;
    get isUsernameContainmentAllowed(): cdktf.IResolvable;
    get minimumPasswordLength(): number;
}
export declare class DataOciIdentityAuthenticationPolicyPasswordPolicyList extends cdktf.ComplexList {
    protected terraformResource: cdktf.IInterpolatingParent;
    protected terraformAttribute: string;
    protected wrapsSet: boolean;
    /**
    * @param terraformResource The parent resource
    * @param terraformAttribute The attribute on the parent resource this class is referencing
    * @param wrapsSet whether the list is wrapping a set (will add tolist() to be able to access an item via an index)
    */
    constructor(terraformResource: cdktf.IInterpolatingParent, terraformAttribute: string, wrapsSet: boolean);
    /**
    * @param index the index of the item to return
    */
    get(index: number): DataOciIdentityAuthenticationPolicyPasswordPolicyOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_authentication_policy oci_identity_authentication_policy}
*/
export declare class DataOciIdentityAuthenticationPolicy extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_identity_authentication_policy";
    /**
    * Generates CDKTF code for importing a DataOciIdentityAuthenticationPolicy 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 DataOciIdentityAuthenticationPolicy to import
    * @param importFromId The id of the existing DataOciIdentityAuthenticationPolicy that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/identity_authentication_policy#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciIdentityAuthenticationPolicy 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/identity_authentication_policy oci_identity_authentication_policy} 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 DataOciIdentityAuthenticationPolicyConfig
    */
    constructor(scope: Construct, id: string, config: DataOciIdentityAuthenticationPolicyConfig);
    private _compartmentId?;
    get compartmentId(): string;
    set compartmentId(value: string);
    get compartmentIdInput(): string | undefined;
    get id(): string;
    private _networkPolicy;
    get networkPolicy(): DataOciIdentityAuthenticationPolicyNetworkPolicyList;
    private _passwordPolicy;
    get passwordPolicy(): DataOciIdentityAuthenticationPolicyPasswordPolicyList;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
