/** * Allow insecure HTTPS client. This can also be set as the ISE_INSECURE environment variable. Defaults to `true`. */ export declare const insecure: boolean | undefined; /** * Password for the ISE instance. This can also be set as the ISE_PASSWORD environment variable. */ export declare const password: string | undefined; /** * HTTP request timeout in seconds for REST API calls. This can also be set as the ISE_REQUEST_TIMEOUT environment variable. Defaults to `60`. Increase this value when working with complex nested policy conditions (e.g., 7-level nesting may require 180-300 seconds). */ export declare const requestTimeout: number | undefined; /** * Number of retries for REST API calls. This can also be set as the ISE_RETRIES environment variable. Defaults to `3`. */ export declare const retries: number | undefined; /** * URL of the Cisco ISE instance. This can also be set as the ISE_URL environment variable. */ export declare const url: string | undefined; /** * Username for the ISE instance. This can also be set as the ISE_USERNAME environment variable. */ export declare const username: string | undefined; //# sourceMappingURL=vars.d.ts.map