import { AutoCodeInspection, ExtensionPack, PushImpact, ReviewListenerRegistration } from "@atomist/sdm"; export interface CloudFoundrySupportOptions { /** * Inspect goal to add inspections to. * Review functionality won't work otherwise. */ inspectGoal?: AutoCodeInspection; /** * Autofix goal to add autofixes to. * Autofix functionality won't work otherwise. */ pushImpactGoal?: PushImpact; /** * Review listeners that let you publish review results. */ reviewListeners?: ReviewListenerRegistration | ReviewListenerRegistration[]; } export declare function CloudFoundrySupport(options: CloudFoundrySupportOptions): ExtensionPack;