export declare class TokenService {
    get: () => string;
    set: (val: string) => string;
    remove: () => void;
    constructor();
}
