import type { InlineAcknowledgement } from '../../types/analysis.types'; /** * Returns the acknowledgements declared via * `Validations.of(scope).acknowledge({ id: 'cdk-insights::', ... })` * across every artifact in the manifest sibling to `templatePath`. * * Soft-fails: missing or malformed manifest yields an empty array, which * matches "user hasn't acknowledged anything" without breaking synth. */ export declare const loadAcknowledgementsForTemplate: (templatePath: string) => InlineAcknowledgement[];