import Deployment from '../types/Deployment';
/**
 * Get the deployment configuration of an app
 * @author Gabe Abrams
 * @param deployment the deployment entry to check
 * @returns parsed JSON of the deployment config
 */
declare const getDeploymentConfig: (deployment: Deployment) => {
    [k: string]: any;
};
export default getDeploymentConfig;
