import type { FixerRegistry } from './types'; /** * Map of supported rule IDs → fixer. * * The rule IDs match `Issue.ruleId` as emitted by cdk-nag and cdk-insights' * own rules. AwsSolutions-* are bundled cdk-nag rules. To add support for a * new mechanical fix, write a fixer above and add an entry here — the `fix` * command and the docs auto-pick it up. */ export declare const fixerRegistry: FixerRegistry; export declare const isFixableRule: (ruleId?: string) => boolean;