import { HttpClient } from '../http/http-client';
import { IWebUnlockerService, UnlockOptions, UnlockResponse } from '../index';
export declare class WebUnlockerService implements IWebUnlockerService {
    private httpClient;
    private zone;
    constructor(httpClient: HttpClient, zone: string);
    unlock(url: string, options: UnlockOptions): Promise<UnlockResponse>;
    private isValidUrl;
}
