import { Service } from '../common'; import { Session } from './classes'; import { SessionOptions } from './interfaces'; export declare class SessionService extends Service { private readonly storage; private session; constructor(options?: SessionOptions); get headers(): { [key: string]: any; }; get sessionTtl(): number; verifySession(): Promise; refreshSession(): Promise; createSession(ttl?: number, fcmToken?: string): Promise; protected onInit(): void; private storeSession; private restoreSession; }