import { type Page } from 'playwright-core'; export declare function detectTurnstile(page: Page): Promise; export declare function extractTurnstileDetails(page: Page): Promise<{ websiteKey?: string; action?: string; cdata?: string; callbackName?: string; callbackCaptured?: boolean; }>; export declare function hasTurnstileToken(page: Page): Promise; export declare function injectTurnstileToken(page: Page, token: string): Promise<{ wrote: boolean; callbackInvoked: boolean; }>; export declare function solveTurnstile(page: Page): Promise; //# sourceMappingURL=TurnstileSolver.d.ts.map