import { ApiService } from '../api.service';
import { Observable } from 'rxjs/Observable';
import { Country } from "../country/country.service";
export declare class WarningsApiService {
    private api;
    host: string;
    constructor(api: ApiService);
    getWarningStats(country: Country): Observable<any>;
}
