import * as outputs from "../types/output"; /** * This can be used to manage a list of devices from a single provider. All devices must use the same credentials. Each * resource and data source has an optional attribute named `device`, which can then select a device by its name from this * list. */ export declare const devices: outputs.config.Devices[] | undefined; /** * Allow insecure HTTPS client. This can also be set as the IOSXE_INSECURE environment variable. Defaults to `true`. */ export declare const insecure: boolean | undefined; /** * Password for the IOS-XE device. This can also be set as the IOSXE_PASSWORD environment variable. */ export declare const password: string | undefined; /** * Number of retries for REST API calls. This can also be set as the IOSXE_RETRIES environment variable. Defaults to `10`. */ export declare const retries: number | undefined; /** * URL of the Cisco IOS-XE device. Optionally a port can be added with `:12345`. The default port is `443`. This can also * be set as the IOSXE_URL environment variable. */ export declare const url: string | undefined; /** * Username for the IOS-XE device. This can also be set as the IOSXE_USERNAME environment variable. */ export declare const username: string | undefined;