import type { Issue } from '../../types/analysis.types';
type ExtractInlineNagFindings = (output: string, options: Record<string, string>) => Issue[];
type RunCdkSynthDependencies = {
    extractInlineNagFindings: ExtractInlineNagFindings;
    stackName?: string;
};
export declare const runCdkSynth: ({ extractInlineNagFindings, stackName, }: RunCdkSynthDependencies) => Issue[];
export {};
