/**
 * Flag to enable debugging API calls. Default is false.
 */
export declare const apiDebug: boolean | undefined;
/**
 * Timeout in seconds for completing API transactions with the Mist Cloud. Omit for default value of 10 seconds. Value of 0
 * results in infinite timeout.
 */
export declare const apiTimeout: number | undefined;
/**
 * For API Token authentication, the Mist API Token.
 */
export declare const apitoken: string | undefined;
/**
 * URL of the Mist Cloud, e.g. `api.mist.com`.
 */
export declare const host: string | undefined;
/**
 * For username/password authentication, the Mist Account password.
 */
export declare const password: string | undefined;
/**
 * Requests use the configured proxy to reach the Mist Cloud. The value may be either a complete URL or a
 * `[username:password@]host[:port]`, in which case the `http` scheme is assumed. The schemes `http`, `https`, and `socks5`
 * are supported.
 */
export declare const proxy: string | undefined;
/**
 * For username/password authentication, the Mist Account username.
 */
export declare const username: string | undefined;
