import { OAuthGrantType, PasswordGrant } from './oauth-grant-type.interface'; export declare const AXIOS_HTTP_TIMEOUT_ERROR_CODE = "ECONNABORTED"; export declare function isHttpTimeoutError(error: any): boolean; export declare function isAllowedHttpErrorToReconnect(error: any): boolean; export declare const isPasswordGrant: (oAuthGrantType: OAuthGrantType) => oAuthGrantType is PasswordGrant;