import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciCoreImageConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_image#image_id DataOciCoreImage#image_id}
    */
    readonly imageId: string;
}
export interface DataOciCoreImageAgentFeatures {
}
export declare function dataOciCoreImageAgentFeaturesToTerraform(struct?: DataOciCoreImageAgentFeatures): any;
export declare function dataOciCoreImageAgentFeaturesToHclTerraform(struct?: DataOciCoreImageAgentFeatures): any;
export declare class DataOciCoreImageAgentFeaturesOutputReference 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(): DataOciCoreImageAgentFeatures | undefined;
    set internalValue(value: DataOciCoreImageAgentFeatures | undefined);
    get isManagementSupported(): cdktf.IResolvable;
    get isMonitoringSupported(): cdktf.IResolvable;
}
export declare class DataOciCoreImageAgentFeaturesList 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): DataOciCoreImageAgentFeaturesOutputReference;
}
export interface DataOciCoreImageImageSourceDetails {
}
export declare function dataOciCoreImageImageSourceDetailsToTerraform(struct?: DataOciCoreImageImageSourceDetails): any;
export declare function dataOciCoreImageImageSourceDetailsToHclTerraform(struct?: DataOciCoreImageImageSourceDetails): any;
export declare class DataOciCoreImageImageSourceDetailsOutputReference 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(): DataOciCoreImageImageSourceDetails | undefined;
    set internalValue(value: DataOciCoreImageImageSourceDetails | undefined);
    get bucketName(): string;
    get namespaceName(): string;
    get objectName(): string;
    get operatingSystem(): string;
    get operatingSystemVersion(): string;
    get sourceImageType(): string;
    get sourceType(): string;
    get sourceUri(): string;
}
export declare class DataOciCoreImageImageSourceDetailsList 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): DataOciCoreImageImageSourceDetailsOutputReference;
}
export interface DataOciCoreImageLaunchOptions {
}
export declare function dataOciCoreImageLaunchOptionsToTerraform(struct?: DataOciCoreImageLaunchOptions): any;
export declare function dataOciCoreImageLaunchOptionsToHclTerraform(struct?: DataOciCoreImageLaunchOptions): any;
export declare class DataOciCoreImageLaunchOptionsOutputReference 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(): DataOciCoreImageLaunchOptions | undefined;
    set internalValue(value: DataOciCoreImageLaunchOptions | undefined);
    get bootVolumeType(): string;
    get firmware(): string;
    get isConsistentVolumeNamingEnabled(): cdktf.IResolvable;
    get isPvEncryptionInTransitEnabled(): cdktf.IResolvable;
    get networkType(): string;
    get remoteDataVolumeType(): string;
}
export declare class DataOciCoreImageLaunchOptionsList 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): DataOciCoreImageLaunchOptionsOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_image oci_core_image}
*/
export declare class DataOciCoreImage extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_core_image";
    /**
    * Generates CDKTF code for importing a DataOciCoreImage 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 DataOciCoreImage to import
    * @param importFromId The id of the existing DataOciCoreImage that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/core_image#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciCoreImage 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/core_image oci_core_image} 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 DataOciCoreImageConfig
    */
    constructor(scope: Construct, id: string, config: DataOciCoreImageConfig);
    private _agentFeatures;
    get agentFeatures(): DataOciCoreImageAgentFeaturesList;
    get baseImageId(): string;
    get billableSizeInGbs(): string;
    get compartmentId(): string;
    get createImageAllowed(): cdktf.IResolvable;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get displayName(): string;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    get id(): string;
    private _imageId?;
    get imageId(): string;
    set imageId(value: string);
    get imageIdInput(): string | undefined;
    private _imageSourceDetails;
    get imageSourceDetails(): DataOciCoreImageImageSourceDetailsList;
    get instanceId(): string;
    get launchMode(): string;
    private _launchOptions;
    get launchOptions(): DataOciCoreImageLaunchOptionsList;
    get listingType(): string;
    get operatingSystem(): string;
    get operatingSystemVersion(): string;
    get sizeInMbs(): string;
    get state(): string;
    get timeCreated(): string;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
