import { WebTokenManipulator } from './web-token-manipulator'; import { JwtRatchetLike, JwtTokenBase } from '@bitblit/ratchet/common'; /** * Service for handling jwt tokens */ export declare class JwtRatchetLocalWebTokenManipulator implements WebTokenManipulator { private _jwtRatchet; private _issuer; constructor(_jwtRatchet: JwtRatchetLike, _issuer: string); get jwtRatchet(): JwtRatchetLike; get issuer(): string; extractTokenFromAuthorizationHeader(header: string): Promise; }