import type { ConstructLevel } from '../classifyConstructLevel/classifyConstructLevel'; /** * Returns a short, contextual hint to append to a finding's recommendation * based on the resource's CDK construct level. Returns empty string for * levels where no extra context helps (L2, unknown). * * The hint is meant to be additive — it doesn't replace the rule's primary * remediation, just adds construct-aware context that helps the user * prioritise. */ export declare const constructLevelHint: (level: ConstructLevel | undefined) => string; /** * Appends a construct-level hint to an existing recommendation. Idempotent * for empty hints (returns the recommendation unchanged when the level * doesn't warrant a hint). */ export declare const appendConstructLevelHint: (recommendation: string | undefined, level: ConstructLevel | undefined) => string | undefined;