/** * TL-PERM-002 - Lambda event source mapping missing required IAM permissions. * * The Lambda poller runs with the FUNCTION's execution role, and each source * type has an exact, documented action set. Missing actions fail the * CreateEventSourceMapping call at deploy time (SQS/Kinesis) or leave the * poller erroring with AccessDenied. Deterministic: the required actions are * not a guess. */ import type { AnalysisResults, CloudFormationStack, CreateFindingFunction } from '../../../../types/analysis.types'; export declare const checkEventSourceMappingMissingPermissions: (template: CloudFormationStack, createFinding: CreateFindingFunction) => AnalysisResults;