/**
 * Domain name/IP of the BigIP
 */
export declare const address: string | undefined;
/**
 * Amount of times to retry AS3 API requests. Default: 10.
 */
export declare const apiRetries: number | undefined;
/**
 * A timeout for AS3 requests, represented as a number of seconds. Default: 60
 */
export declare const apiTimeout: number | undefined;
/**
 * Login reference for token authentication (see BIG-IP REST docs for details)
 */
export declare const loginRef: string | undefined;
/**
 * The user's password. Leave empty if using token_value
 */
export declare const password: string | undefined;
/**
 * Management Port to connect to Bigip
 */
export declare const port: string | undefined;
/**
 * If this flag set to true,sending telemetry data to TEEM will be disabled
 */
export declare const teemDisable: boolean | undefined;
/**
 * Enable to use token authentication. Can be set via the BIGIP_TOKEN_AUTH environment variable
 */
export declare const tokenAuth: boolean | undefined;
/**
 * A lifespan to request for the AS3 auth token, represented as a number of seconds. Default: 1200
 */
export declare const tokenTimeout: number | undefined;
/**
 * A token generated outside the provider, in place of password
 */
export declare const tokenValue: string | undefined;
/**
 * Valid Trusted Certificate path
 */
export declare const trustedCertPath: string | undefined;
/**
 * Username with API access to the BigIP
 */
export declare const username: string | undefined;
/**
 * If set to true, Disables TLS certificate check on BIG-IP. Default : True
 */
export declare const validateCertsDisable: boolean | undefined;
