export declare const PROVIDER_ID = "2captcha"; import type * as types from '../types.js'; export interface DecodeRecaptchaAsyncResult { err?: Error | string | null | undefined; result?: { text?: string; id?: string; }; invalid?: (error?: string | Error) => void; } export interface TwoCaptchaProviderOpts { useEnterpriseFlag?: boolean; useActionValue?: boolean; } export declare function getSolutions(captchas?: types.CaptchaInfo[], token?: string, opts?: TwoCaptchaProviderOpts): Promise; //# sourceMappingURL=2captcha.d.ts.map