import { Observable } from "rxjs";
import { HttpUtilsService } from "../..//shared/service/http-utils.service";
export declare class TokenService {
    http: HttpUtilsService;
    protected baseUrlToken: string;
    constructor(http: HttpUtilsService);
    validacion(token: string): Observable<boolean>;
}
