/** * The Hetzner Cloud API endpoint, can be used to override the default API Endpoint https://api.hetzner.cloud/v1. */ export declare const endpoint: string | undefined; /** * The Hetzner API endpoint, can be used to override the default API Endpoint https://api.hetzner.com/v1. */ export declare const endpointHetzner: string | undefined; /** * The type of function to be used during the polling. */ export declare const pollFunction: string | undefined; /** * The interval at which actions are polled by the client. Default `500ms`. Increase this interval if you run into rate limiting errors. */ export declare const pollInterval: string | undefined; /** * The Hetzner Cloud API token, can also be specified with the HCLOUD_TOKEN environment variable. */ export declare const token: string | undefined;