/** * Centralised product branding + referral links. * * The report artifacts CDK Insights emits (markdown report, GitHub issue body, * PR comment) are seen by a developer's whole team. That's free distribution we * otherwise leave on the table - so each shareable artifact carries a single * tasteful "run your own scan" footer. It needs zero ongoing effort and scales * with whoever happens to use the tool. */ export declare const CDK_INSIGHTS_SITE = "https://cdkinsights.dev"; /** * Build a UTM-tagged link back to the marketing site. Tagging the `medium` * (pr-comment / markdown-report / github-issue) lets us see in analytics which * surface actually drives sign-ups, so the referral loop can be tuned later * without touching the CLI. */ export declare const referralUrl: (medium: string) => string; /** * Single-line markdown referral footer for shareable report artifacts. Uses * markdown italics to match the surrounding report style. `medium` identifies * the output surface for analytics attribution. */ export declare const referralFooterMarkdown: (medium: string) => string;