import { UnlockOptions, UnlockResponse } from './index';
export interface IWebUnlockerService {
    unlock(url: string, options?: UnlockOptions): Promise<UnlockResponse>;
}
export interface IBrightDataClient {
    webUnlocker: IWebUnlockerService;
}
