import type { VibeGuidance } from '../types/config.js'; export declare class ActionBlocklist { private patterns; constructor(configPatterns?: string[], guidance?: VibeGuidance | null); isBlocked(selector: string | undefined, text: string | undefined): boolean; get count(): number; }