import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeClockConfig extends cdktf.TerraformMetaArguments { /** * A device name from the provider configuration. * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/clock#device DataIosxeClock#device} */ readonly device?: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/clock iosxe_clock} */ export declare class DataIosxeClock extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_clock"; /** * Generates CDKTF code for importing a DataIosxeClock resource upon running "cdktf plan " * @param scope The scope in which to define this construct * @param importToId The construct id used in the generated config for the DataIosxeClock to import * @param importFromId The id of the existing DataIosxeClock that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/clock#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeClock to import is found */ static generateConfigForImport(scope: Construct, importToId: string, importFromId: string, provider?: cdktf.TerraformProvider): any; /** * Create a new {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/clock iosxe_clock} 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 DataIosxeClockConfig = {} */ constructor(scope: Construct, id: string, config?: DataIosxeClockConfig); get calendarValid(): any; private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; get summerTimeDate(): any; get summerTimeDateEndDay(): any; get summerTimeDateEndMonth(): any; get summerTimeDateEndTime(): any; get summerTimeDateEndYear(): any; get summerTimeDateOffset(): any; get summerTimeDateStartDay(): any; get summerTimeDateStartMonth(): any; get summerTimeDateStartTime(): any; get summerTimeDateStartYear(): any; get summerTimeRecurring(): any; get summerTimeRecurringEndMonth(): any; get summerTimeRecurringEndTime(): any; get summerTimeRecurringEndWeek(): any; get summerTimeRecurringEndWeekday(): any; get summerTimeRecurringOffset(): any; get summerTimeRecurringStartMonth(): any; get summerTimeRecurringStartTime(): any; get summerTimeRecurringStartWeek(): any; get summerTimeRecurringStartWeekday(): any; get summerTimeZone(): any; get timezone(): any; get timezoneOffsetHours(): any; get timezoneOffsetMinutes(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }