import { Construct } from 'constructs';
import * as cdktf from 'cdktf';
export interface DataOciResourceSchedulerScheduleConfig extends cdktf.TerraformMetaArguments {
    /**
    * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/resource_scheduler_schedule#schedule_id DataOciResourceSchedulerSchedule#schedule_id}
    */
    readonly scheduleId: string;
}
export interface DataOciResourceSchedulerScheduleResourceFiltersValue {
}
export declare function dataOciResourceSchedulerScheduleResourceFiltersValueToTerraform(struct?: DataOciResourceSchedulerScheduleResourceFiltersValue): any;
export declare function dataOciResourceSchedulerScheduleResourceFiltersValueToHclTerraform(struct?: DataOciResourceSchedulerScheduleResourceFiltersValue): any;
export declare class DataOciResourceSchedulerScheduleResourceFiltersValueOutputReference 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(): DataOciResourceSchedulerScheduleResourceFiltersValue | undefined;
    set internalValue(value: DataOciResourceSchedulerScheduleResourceFiltersValue | undefined);
    get namespace(): string;
    get tagKey(): string;
    get value(): string;
}
export declare class DataOciResourceSchedulerScheduleResourceFiltersValueList 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): DataOciResourceSchedulerScheduleResourceFiltersValueOutputReference;
}
export interface DataOciResourceSchedulerScheduleResourceFilters {
}
export declare function dataOciResourceSchedulerScheduleResourceFiltersToTerraform(struct?: DataOciResourceSchedulerScheduleResourceFilters): any;
export declare function dataOciResourceSchedulerScheduleResourceFiltersToHclTerraform(struct?: DataOciResourceSchedulerScheduleResourceFilters): any;
export declare class DataOciResourceSchedulerScheduleResourceFiltersOutputReference 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(): DataOciResourceSchedulerScheduleResourceFilters | undefined;
    set internalValue(value: DataOciResourceSchedulerScheduleResourceFilters | undefined);
    get attribute(): string;
    get condition(): string;
    get shouldIncludeChildCompartments(): cdktf.IResolvable;
    private _value;
    get value(): DataOciResourceSchedulerScheduleResourceFiltersValueList;
}
export declare class DataOciResourceSchedulerScheduleResourceFiltersList 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): DataOciResourceSchedulerScheduleResourceFiltersOutputReference;
}
export interface DataOciResourceSchedulerScheduleResources {
}
export declare function dataOciResourceSchedulerScheduleResourcesToTerraform(struct?: DataOciResourceSchedulerScheduleResources): any;
export declare function dataOciResourceSchedulerScheduleResourcesToHclTerraform(struct?: DataOciResourceSchedulerScheduleResources): any;
export declare class DataOciResourceSchedulerScheduleResourcesOutputReference 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(): DataOciResourceSchedulerScheduleResources | undefined;
    set internalValue(value: DataOciResourceSchedulerScheduleResources | undefined);
    get id(): string;
    private _metadata;
    get metadata(): cdktf.StringMap;
}
export declare class DataOciResourceSchedulerScheduleResourcesList 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): DataOciResourceSchedulerScheduleResourcesOutputReference;
}
/**
* Represents a {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/resource_scheduler_schedule oci_resource_scheduler_schedule}
*/
export declare class DataOciResourceSchedulerSchedule extends cdktf.TerraformDataSource {
    static readonly tfResourceType = "oci_resource_scheduler_schedule";
    /**
    * Generates CDKTF code for importing a DataOciResourceSchedulerSchedule 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 DataOciResourceSchedulerSchedule to import
    * @param importFromId The id of the existing DataOciResourceSchedulerSchedule that should be imported. Refer to the {@link https://registry.terraform.io/providers/oracle/oci/6.18.0/docs/data-sources/resource_scheduler_schedule#import import section} in the documentation of this resource for the id to use
    * @param provider? Optional instance of the provider where the DataOciResourceSchedulerSchedule 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/resource_scheduler_schedule oci_resource_scheduler_schedule} 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 DataOciResourceSchedulerScheduleConfig
    */
    constructor(scope: Construct, id: string, config: DataOciResourceSchedulerScheduleConfig);
    get action(): string;
    get compartmentId(): string;
    private _definedTags;
    get definedTags(): cdktf.StringMap;
    get description(): string;
    get displayName(): string;
    private _freeformTags;
    get freeformTags(): cdktf.StringMap;
    get id(): string;
    get recurrenceDetails(): string;
    get recurrenceType(): string;
    private _resourceFilters;
    get resourceFilters(): DataOciResourceSchedulerScheduleResourceFiltersList;
    private _resources;
    get resources(): DataOciResourceSchedulerScheduleResourcesList;
    private _scheduleId?;
    get scheduleId(): string;
    set scheduleId(value: string);
    get scheduleIdInput(): string | undefined;
    get state(): string;
    private _systemTags;
    get systemTags(): cdktf.StringMap;
    get timeCreated(): string;
    get timeEnds(): string;
    get timeLastRun(): string;
    get timeNextRun(): string;
    get timeStarts(): string;
    get timeUpdated(): string;
    protected synthesizeAttributes(): {
        [name: string]: any;
    };
    protected synthesizeHclAttributes(): {
        [name: string]: any;
    };
}
