/**
 * Falcon Client Id for authenticating to the CrowdStrike APIs. Will use FALCON_CLIENT_ID environment variable when left
 * blank.
 */
export declare const clientId: string | undefined;
/**
 * Falcon Client Secret used for authenticating to the CrowdStrike APIs. Will use FALCON_CLIENT_SECRET environment variable
 * when left blank.
 */
export declare const clientSecret: string | undefined;
/**
 * Falcon Cloud to authenticate to. Valid values are autodiscover, us-1, us-2, eu-1, us-gov-1. Will use FALCON_CLOUD
 * environment variable when left blank.
 */
export declare const cloud: string | undefined;
/**
 * For MSSP Master CIDs, optionally lock the token to act on behalf of this member CID
 */
export declare const memberCid: string | undefined;
