import { HttpClient } from "@angular/common/http";
import { Observable } from "rxjs";
import { DaDataResponse } from "./models/da-data-response";
export declare enum DaDataType {
    fio = "fio",
    address = "address",
    party = "party",
    bank = "bank",
    email = "email"
}
export declare class NgxDaDataService {
    private http;
    apiKey: string;
    constructor(http: HttpClient);
    setApiKey(key: string): void;
    getData(value: string, type?: DaDataType, count?: number, options?: any): Observable<DaDataResponse>;
}
