/** * Constant which has all default injectable request headers. */ export declare const NODE_HTTP_REQ_HEADERS: { readonly SESSION_ID: "x-session-id"; readonly REQUEST_ID: "x-req-id"; readonly API_KEY: "x-api-key"; readonly AUTH_TOKEN: "x-authtoken"; readonly ACCESS_TOKEN: "x-access-token"; readonly ENCRYPTION_KEY: "x-api-encryption-key"; readonly CLIENT_ID: "x-api-client-id"; }; /** * Constant which has all response headers which are read from API responses. */ export declare const NODE_HTTP_RES_HEADERS: { readonly AUTH_TOKEN: "x-authtoken"; readonly ACCESS_TOKEN: "x-access-token"; readonly REFRESH_TOKEN: "x-refresh-token"; };