import { IMultiCaptchaSolver } from '../mcs.interface.js'; import { ProxyOptions } from '../types/proxy.types.js'; export declare class CapMonsterService implements IMultiCaptchaSolver { private client; constructor(apiKey: string); getBalance(): Promise; solveImageCaptcha(base64string: string): Promise; solveRecaptchaV2(websiteURL: string, websiteKey: string, proxy?: ProxyOptions): Promise; solveHCaptcha(websiteURL: string, websiteKey: string, proxy?: ProxyOptions): Promise; solveRecaptchaV3(websiteURL: string, websiteKey: string, minScore: number, pageAction: string, _proxy?: ProxyOptions): Promise; }