import type { CloudFormationStack, Issue, IssueGroup } from '../../types/analysis.types';
type SynthesizedCdkStacks = {
    stacks: Record<string, CloudFormationStack>;
    inlineFindings: Issue[];
    pathToLogicalId: Record<string, string>;
    recommendationMapPerStack: Record<string, Record<string, IssueGroup>>;
    assetSourcePaths: Record<string, string>;
};
export declare const synthesizeCdkStacks: (stackName?: string) => SynthesizedCdkStacks;
export {};
