export interface Config { cdkArgs: string[]; platform?: 'bitbucket' | 'github' | 'gitlab'; workspace?: string; repoSlug?: string; bitbucketApiUrl?: string; gitlabApiUrl?: string; dryRun?: boolean; htmlOutput?: string; /** Node module to load the premium engine from. Defaults to '@iacreview/pro'. */ proModule?: string; /** API key for the hosted IaCReview plan. */ apiKey?: string; /** Base URL of the IaCReview API (hosted or self-hosted). */ apiUrl?: string; /** Exit non-zero when the engine reports a blocked merge verdict. */ failOnBlock?: boolean; environments?: unknown; policies?: unknown; security?: unknown; blockOn?: unknown; } export declare function loadConfig(cwd?: string): Config; //# sourceMappingURL=config.d.ts.map