import type { AppliedMixin, ManifestEntry } from '../../types/analysis.types'; /** * Extracts the deduped list of CDK Mixins applied to a single construct, * preserving the order they were applied in. Malformed entries are skipped * silently so a future schema bump in aws-cdk-lib can't break analysis. */ export declare const extractMixinApplications: (entries: ManifestEntry[]) => AppliedMixin[];