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