/** * Configure API client to always use that account */ export declare const accountId: string | undefined; /** * Configure the base path used by the API client */ export declare const apiBasePath: string | undefined; /** * Whether to print logs from the API client (using the default log library logger) */ export declare const apiClientLogging: boolean; /** * Configure the hostname used by the API client */ export declare const apiHostname: string | undefined; /** * The API key for operations. */ export declare const apiKey: string | undefined; /** * The API Token for operations. */ export declare const apiToken: string | undefined; /** * A special Cloudflare API key good for a restricted set of endpoints */ export declare const apiUserServiceKey: string | undefined; /** * A registered Cloudflare email address */ export declare const email: string | undefined; /** * Maximum backoff period in seconds after failed API calls */ export declare const maxBackoff: number; /** * Minimum backoff period in seconds after failed API calls */ export declare const minBackoff: number; /** * Maximum number of retries to perform when an API request fails */ export declare const retries: number; /** * RPS limit to apply when making calls to the API */ export declare const rps: number;