/** * The OVH API Access Token */ export declare const accessToken: string | undefined; /** * Specify the API request rate limit, X operations by seconds (default: unlimited) */ export declare const apiRateLimit: number | undefined; /** * The OVH API Application Key */ export declare const applicationKey: string | undefined; /** * The OVH API Application Secret */ export declare const applicationSecret: string | undefined; /** * OAuth 2.0 application's ID */ export declare const clientId: string | undefined; /** * OAuth 2.0 application's secret */ export declare const clientSecret: string | undefined; /** * The OVH API Consumer Key */ export declare const consumerKey: string | undefined; /** * The OVH API endpoint to target (ex: "ovh-eu") */ export declare const endpoint: string | undefined; /** * If set to true, initialization errors (like invalid OAuth credentials) will be ignored */ export declare const ignoreInitError: boolean | undefined; /** * Extra information to append to the user-agent */ export declare const userAgentExtra: string | undefined;