import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeEvpnProfileConfig 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/evpn_profile#device DataIosxeEvpnProfile#device} */ readonly device?: string; /** * EVPN L2 profile name * * Docs at Terraform Registry: {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/evpn_profile#name DataIosxeEvpnProfile#name} */ readonly name: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/evpn_profile iosxe_evpn_profile} */ export declare class DataIosxeEvpnProfile extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_evpn_profile"; /** * Generates CDKTF code for importing a DataIosxeEvpnProfile 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 DataIosxeEvpnProfile to import * @param importFromId The id of the existing DataIosxeEvpnProfile that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/evpn_profile#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeEvpnProfile 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/evpn_profile iosxe_evpn_profile} 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 DataIosxeEvpnProfileConfig */ constructor(scope: Construct, id: string, config: DataIosxeEvpnProfileConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get eviBase(): any; get id(): any; get l2VniBase(): any; private _name?; get name(): string; set name(value: string); get nameInput(): string; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }