export declare const Constants: { ACCESS_TOKEN: string; EXPIRES_IN: string; ID_TOKEN: string; ERROR_DESCRIPTION: string; SESSION_STATE: string; STORAGE: { TOKEN_KEYS: string; ACCESS_TOKEN_KEY: string; EXPIRATION_KEY: string; STATE_LOGIN: string; STATE_RENEW: string; NONCE_IDTOKEN: string; SESSION_STATE: string; USERNAME: string; IDTOKEN: string; ACCESSTOKEN: string; ERROR: string; ERROR_DESCRIPTION: string; LOGIN_REQUEST: string; LOGIN_ERROR: string; RENEW_STATUS: string; }; RESOURCE_DELIMETER: string; LOADFRAME_TIMEOUT: string; TOKEN_RENEW_STATUS_CANCELED: string; TOKEN_RENEW_STATUS_COMPLETED: string; TOKEN_RENEW_STATUS_IN_PROGRESS: string; LOGGING_LEVEL: { ERROR: number; WARN: number; INFO: number; VERBOSE: number; }; LEVEL_STRING_MAP: { 0: string; 1: string; 2: string; 3: string; }; }; export declare const RequestTypes: { LOGIN: string; RENEW_TOKEN: string; UNKNOWN: string; };