/** * Strips description content from strings to avoid false positives in rule scanning. * Description tags in Flow elements often contain documentation URLs and IDs * that should not trigger hardcoded-id or hardcoded-url violations. * * Handles both formats: * - XML: ... * - JSON: "description":"..." */ export declare function stripDescriptionContent(content: string): string;