import { Construct } from 'constructs'; import * as cdktf from 'cdktf'; export interface DataIosxeMplsConfig 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/mpls#device DataIosxeMpls#device} */ readonly device?: string; } /** * Represents a {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/mpls iosxe_mpls} */ export declare class DataIosxeMpls extends cdktf.TerraformDataSource { static readonly tfResourceType = "iosxe_mpls"; /** * Generates CDKTF code for importing a DataIosxeMpls 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 DataIosxeMpls to import * @param importFromId The id of the existing DataIosxeMpls that should be imported. Refer to the {@link https://registry.terraform.io/providers/ciscodevnet/iosxe/0.15.0/docs/data-sources/mpls#import import section} in the documentation of this resource for the id to use * @param provider? Optional instance of the provider where the DataIosxeMpls 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/mpls iosxe_mpls} 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 DataIosxeMplsConfig = {} */ constructor(scope: Construct, id: string, config?: DataIosxeMplsConfig); private _device?; get device(): string; set device(value: string); resetDevice(): void; get deviceInput(): string; get id(): any; get labelModeAllVrfsAllAfsPerCe(): any; get labelModeAllVrfsAllAfsPerPrefix(): any; get labelModeAllVrfsAllAfsPerVrf(): any; get labelModeAllVrfsAllAfsVrfConnAggr(): any; get labelModeAllVrfsBgpVpnv4PerCe(): any; get labelModeAllVrfsBgpVpnv4PerPrefix(): any; get labelModeAllVrfsBgpVpnv4PerVrf(): any; get labelModeAllVrfsBgpVpnv4VrfConnAggr(): any; get labelModeAllVrfsBgpVpnv6PerCe(): any; get labelModeAllVrfsBgpVpnv6PerPrefix(): any; get labelModeAllVrfsBgpVpnv6PerVrf(): any; get labelModeAllVrfsBgpVpnv6VrfConnAggr(): any; get labelProtocol(): any; protected synthesizeAttributes(): { [name: string]: any; }; protected synthesizeHclAttributes(): { [name: string]: any; }; }