import { Http } from '@angular/http';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';
export declare class DataFinder {
    private http;
    constructor(http: Http);
    getJSONDataAsync(filePath: string): Promise<any>;
    private handleError;
}
