/** * Cross-Resource Relationship Static Checks * * These checks analyze relationships between resources to find issues * that can only be detected by looking at multiple resources together. */ import type { CloudFormationStack, CreateFindingFunction, AnalysisResults } from '../../../../types/analysis.types'; /** * Main entry point for cross-resource relationship checks. */ export declare const checkCrossResourceRelationships: (cloudformationTemplate: CloudFormationStack, createFinding: CreateFindingFunction) => AnalysisResults;