import type { Rule } from "../types.js"; export declare function isFeedbackControlName(name: string): boolean; export declare function detectCategorizedFeedback(source: string): boolean; interface FeedbackScan { names: string[]; categorized: boolean; } export declare function scanForFeedbackControls(repoRoot: string, files?: string[]): FeedbackScan; export declare const rule: Rule; export {};