import { Observable } from 'rxjs';
import { HttpBackendClient } from './../shared/http-module/http.service';
import { InfotipState } from './../states/infotip.state';
export declare class InfotipService {
    private http;
    constructor(http: HttpBackendClient);
    getInfotips(): Observable<InfotipState>;
}
