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