/** * LighthouseA11yToolsNudge — mid-run reminder when the user asked for * lighthouse or accessibility (a11y) audits but no matching exec has run yet. * * Soft: max 1 fire. Pairs with evaluateInventedLighthouseA11yCompletionGate. */ export declare const LIGHTHOUSE_A11Y_TOOLS_NUDGE_MAX_ATTEMPTS = 1; export interface LighthouseA11yToolsNudgeRequest { userText: string; toolCallsByName: Record; messages?: Array<{ role?: string; content?: unknown; }>; totalToolCalls: number; attempts: number; } export type LighthouseA11yToolsNudgeResult = { fire: false; } | { fire: true; correction: string; }; export declare function evaluateLighthouseA11yToolsNudge(request: LighthouseA11yToolsNudgeRequest): LighthouseA11yToolsNudgeResult; //# sourceMappingURL=lighthouse-a11y-tools-nudge.d.ts.map